Skip to main content
GET
/
invoices
Get all invoices
curl --request GET \
  --url https://api.vantage.sh/v2/invoices \
  --header 'Authorization: Bearer <token>'
{
  "invoices": [
    {
      "token": "<string>",
      "invoice_number": "<string>",
      "total": "<string>",
      "billing_period_start": "<string>",
      "billing_period_end": "<string>",
      "status": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "account_token": "<string>",
      "account_name": "<string>",
      "msp_account_token": "<string>"
    }
  ],
  "links": {
    "self": "<string>",
    "first": "<string>",
    "next": "<string>",
    "last": "<string>",
    "prev": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vantage.sh/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer<int32>

The page of results to return.

limit
integer<int32>

The amount of results to return. The maximum is 1000.

managed_account_token
string

Filter invoices by managed account token (MSP accounts only)

Response

200 - application/json

Invoices model

invoices
object[]
required