Skip to content

BillptGetItems

Gets items/products from Bill.pt. Supports getting one by ID or listing with pagination and search by name or code.

FieldTypeRequiredDescription
credentials_idcredentialsYesBill.pt credential
item_idtextNoItem ID (if empty, lists all)
searchtextNoText to filter by name or code
per_pagenumberNoResults per page (default: 50)
pagenumberNoPage number (default: 1)

This module requires a billpt type credential with the following fields:

  • API Token: Bill.pt API access token
{
"success": true,
"items": [ ... ],
"total": 80,
"page": 1
}
  • GET /items/{id} - Individual item
  • GET /items - List items
{
"item_id": "456"
}
{
"search": "Consultoria",
"per_page": 50
}
  • If item_id is provided, a single item is returned
  • The search field filters by name and reference code
  • Retrieved items include price, unit and tax rate