...

/

List, Update and Delete Expenses

List, Update and Delete Expenses

Learn about listing, updating, and deleting expenses using the FreshBooks API.

This lesson taught us to list, update, and delete an expense. We use the following endpoints for these tasks:

  • List all expenses: /accounting/account/{ACCOUNT_ID}/expenses/expenses

  • Update and delete an expense: /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 /accounting/account/{ACCOUNT_ID}/expenses/expenses endpoint.

Request parameters

It does not take any request parameters, but we can add query paramete ...