Skip to main content
GET
/
invoices
Get agency invoices
curl --request GET \
  --url https://api.boosterberg.com-beta.com/v1/invoices \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "invoices": [
    {
      "id": 123,
      "download_url": "<string>",
      "type": "<string>",
      "sum": 123,
      "custom": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Agency invoices with download URLs

success
boolean
invoices
object[]