BillptGetItems
Description
Section titled “Description”Gets items/products from Bill.pt. Supports getting one by ID or listing with pagination and search by name or code.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | Bill.pt credential |
| item_id | text | No | Item ID (if empty, lists all) |
| search | text | No | Text to filter by name or code |
| per_page | number | No | Results per page (default: 50) |
| page | number | No | Page number (default: 1) |
Credentials
Section titled “Credentials”This module requires a billpt type credential with the following fields:
- API Token: Bill.pt API access token
Output
Section titled “Output”{ "success": true, "items": [ ... ], "total": 80, "page": 1}GET /items/{id}- Individual itemGET /items- List items
Usage Example
Section titled “Usage Example”Get item by ID
Section titled “Get item by ID”{ "item_id": "456"}Search items
Section titled “Search items”{ "search": "Consultoria", "per_page": 50}- If
item_idis provided, a single item is returned - The
searchfield filters by name and reference code - Retrieved items include price, unit and tax rate
Related Nodes
Section titled “Related Nodes”- BillptCreateItem - Create item
- BillptCreateDocument - Create tax document
- BillptGetStock - Check stock
- BillptGetTaxes - Get tax rates