Skip to main content
GET
/
invoices
Get all invoices
curl --request GET \
  --url https://api.vantage.sh/v2/invoices \
  --header 'Authorization: Bearer <token>'
{
  "links": {},
  "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>"
    }
  ]
}

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[]