Invoices API

get specific entry

GET /api/rest/customer/v1/invoices/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjozMCwiZXhwIjoxNzc2MzY1MjA2fQ.qWEI2ZgUw4MDzBM1jYWMlZ84JIVTKuhikXq4S-umgXM
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/invoices/7b04b6ce-39c4-11f1-8b83-82ad38f4dd55

Response

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/vnd.api+json
vary: Accept
etag: W/"4a740f80faec3ce15a702eebcdcaf744"
cache-control: max-age=0, private, must-revalidate
x-request-id: 6aca7a0e-57e6-4bd5-a654-2dd4cda34486
x-runtime: 0.007473
content-length: 1092

Status

200 OK

Body

{
  "data": {
    "id": "7b04b6ce-39c4-11f1-8b83-82ad38f4dd55",
    "type": "invoices",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/invoices/7b04b6ce-39c4-11f1-8b83-82ad38f4dd55"
    },
    "attributes": {
      "reference": "23",
      "start-date": "2026-04-09T18:45:46.544Z",
      "end-date": "2026-04-15T18:45:46.544Z",
      "has-pdf": false,
      "amount-spent": "0.0",
      "originated-amount-spent": "0.0",
      "originated-calls-count": 0,
      "originated-successful-calls-count": 0,
      "originated-calls-duration": 0,
      "originated-billing-duration": 0,
      "originated-first-call-at": null,
      "originated-last-call-at": null,
      "terminated-amount-spent": "0.0",
      "terminated-calls-count": 0,
      "terminated-successful-calls-count": 0,
      "terminated-calls-duration": 0,
      "terminated-billing-duration": 0,
      "terminated-first-call-at": null,
      "terminated-last-call-at": null,
      "services-amount-spent": "0.0",
      "service-transactions-count": 0
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/invoices/7b04b6ce-39c4-11f1-8b83-82ad38f4dd55/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/invoices/7b04b6ce-39c4-11f1-8b83-82ad38f4dd55/account"
        }
      }
    }
  }
}