SenseCrypt Docs
API ReferenceAdmin Billing

List Invoices

GET/v1/admin/billing/invoices

Past invoices for the on-site billing-history table, wrapped in the standard envelope (returned in full, Stripe-capped).

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/v1/admin/billing/invoices"
{  "items": [    {      "number": "string",      "created": "2019-08-24T14:15:22Z",      "period_start": "2019-08-24T14:15:22Z",      "period_end": "2019-08-24T14:15:22Z",      "total": 0,      "currency": "string",      "status": "string",      "pdf_url": "string",      "hosted_url": "string"    }  ],  "total": 0,  "limit": 0,  "offset": 0}