Skip to main content
GET
/
billing
/
subscription
/
invoices
Get invoices
curl --request GET \
  --url https://api.getcargo.io/v1/billing/subscription/invoices \
  --header 'Authorization: Bearer <token>'
{
  "invoices": [
    {
      "id": "<string>",
      "isPaid": true,
      "currency": "<string>",
      "amount": 123,
      "dueDate": "<string>",
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

Response body schema.

invoices
Invoices · object[]
required

List of invoices.