Retrieve invoices and payment status for your organization
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | API Key format: Token <token> |
| Org-Handle | string | Yes | Organization domain handle |
Org-Handle by hitting the Get All Organizations API. The domain_handle field in the response is your Org-Handle.| Name | Type | Required | Description |
|---|---|---|---|
| page | integer | No | Page number for pagination (default = 1) |
| page_size | integer | No | Number of records per page (default = 20) |
| Field | Type | Description |
|---|---|---|
| count | integer | Total number of billing records |
| status_code | integer | HTTP status code |
| message | string | Response message |
| results | array | Array of invoice/billing objects |
| Field | Type | Description |
|---|---|---|
| id | integer | Unique invoice identifier |
| amount | string | Invoice amount as decimal string |
| currency | string | Currency code (e.g., USD, INR) |
| status | string | Payment status: paid, pending, failed |
| invoice_date | string | Invoice creation date (ISO 8601) |
| Status Code | Description |
|---|---|
| 200 | Success - Billing data fetched successfully |
| 400 | Bad Request - Invalid parameters provided |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Invalid organization handle |
| 404 | Not Found - Organization not found |
| 500 | Internal Server Error - Server-side error |
page and page_size to retrieve billing records in manageable chunkspending or failed invoice statuses that may require actioncurrency field before displaying amounts to usersinvoice_date alongside id for billing reconciliation workflows