GET /v1/payables returns a paginated list of payables. Filter by status, search by text, and paginate with page and pageSize parameters.
The List Payables endpoint returns a paginated collection of all payables in your account. You can narrow results by lifecycle status, run a free-text search across invoice numbers, descriptions, and contact names, and control page size to suit your UI or data-pipeline needs. Each item in the response is a summary-level Payable object; retrieve a single payable with GET /v1/payables/ to access full line-item detail.
Use totalCount together with your chosen pageSize to calculate the total number of pages: Math.ceil(totalCount / pageSize). For example, totalCount: 84 with pageSize: 25 yields 4 pages. Increment page from 1 to that ceiling to iterate through all results.