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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjozMSwiZXhwIjoxNzg2MzU5NzYxfQ.IgKIjP3nfmGHZlirARkGbIhokRl2ZgcP8ym1ZxJzc-A
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/invoices/ddf69a68-94aa-11f1-bf6d-4e29394502aa

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/"81e748cb6a02b7738f01bde3d4d3d615"
cache-control: max-age=0, private, must-revalidate
x-request-id: 07168b08-51ea-4834-9ff0-d976a18a21ac
x-runtime: 0.007519
content-length: 1092

Status

200 OK

Body

{
  "data": {
    "id": "ddf69a68-94aa-11f1-bf6d-4e29394502aa",
    "type": "invoices",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/invoices/ddf69a68-94aa-11f1-bf6d-4e29394502aa"
    },
    "attributes": {
      "reference": "23",
      "start-date": "2026-08-03T11:01:41.443Z",
      "end-date": "2026-08-09T11:01:41.444Z",
      "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/ddf69a68-94aa-11f1-bf6d-4e29394502aa/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/invoices/ddf69a68-94aa-11f1-bf6d-4e29394502aa/account"
        }
      }
    }
  }
}