List, Update and Delete expenses
Learn about listing, updating, and deleting an expense using the FreshBooks API.
We'll cover the following...
Overview
In this lesson, we learn to list, update, and delete an expense. We use the following endpoints for these tasks:
- List all expenses:
{base_url}/accounting/account/{ACCOUNT_ID}/expenses/expenses
- Update and delete an expense:
{base_url}/accounting/account/{ACCOUNT_ID}/expenses/expenses/{EXPENSE_ID}
List all expenses
In this section, we list all the expenses available in our FreshBooks account by using the https://api.freshbooks.com/accounting/account/{ACCOUNT_ID}/expenses/expenses
endpoint. ...