Search⌘ K
AI Features

Add and Update an Item

Explore how to add and update items in your FreshBooks account using the API. Understand how to use POST and PUT requests to manage item details, which prepares you to create accurate invoices and payments.

Overview

In this lesson, we’ll add some items to our FreshBooks account so we can create invoices and payments to the client. We’ll see the following endpoints:

  • Create an item: {base_url}/accounting/account/{ACCOUNT_ID}/items/items
  • Update an item: {base_url}/accounting/account/{ACCOUNT_ID}/items/items/{ITEM_ID}

To perform different operations on items using FreshBooks API, our application needs to have user:billable_items:read and user:billable_items:write permissions.

Create

...