Every invoices endpoint in the WorkBOS API: parameters, request and response shape, and curl, Node and Python samples generated from the spec.
/invoices| Name | In | Type | Required |
|---|---|---|---|
| limit | query | integer | No |
| offset | query | integer | No |
| Status | Description |
|---|---|
| 200 | OK |
| 401 | Missing/invalid API key |
curl -X GET "https://dkjdtyzjdkumnpdyezbs.supabase.co/functions/v1/api-v1/invoices?limit=20&offset=20" \
-H "Authorization: Bearer YOUR_API_KEY"/invoices/{id}| Name | In | Type | Required |
|---|---|---|---|
| id | path | string | Yes |
| Status | Description |
|---|---|
| 200 | OK |
| 401 | Missing/invalid API key |
| 404 | Not found |
curl -X GET "https://dkjdtyzjdkumnpdyezbs.supabase.co/functions/v1/api-v1/invoices/REPLACE_WITH_ID" \
-H "Authorization: Bearer YOUR_API_KEY"