Invoices API

get specific entry

GET /api/rest/admin/invoices/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE0MSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc3MjIxMjAwNn0.0dQQE1WTL3oMx7GwqkXOzfwqTtFqwPQT7Or6kr5g9L0
Host: example.org
Cookie: 

Route

GET /api/rest/admin/invoices/18

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/"6058760ad79fd074cc97d4a20712a495"
cache-control: max-age=0, private, must-revalidate
x-request-id: c2a1490c-43a4-4e93-aaab-18ec31693d97
x-runtime: 0.008310
content-length: 2164

Status

200 OK

Body

{
  "data": {
    "id": "18",
    "type": "invoices",
    "links": {
      "self": "http://example.org/api/rest/admin/invoices/18"
    },
    "attributes": {
      "reference": "18",
      "state": "Approved",
      "invoice-type": "Auto Full",
      "start-date": "2026-02-20T16:56:46.464Z",
      "end-date": "2026-02-26T16:56:46.464Z",
      "pdf-path": null,
      "odt-path": null,
      "amount-spent": "0.0",
      "amount-earned": "0.0",
      "originated-amount-spent": "0.0",
      "originated-amount-earned": "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-amount-earned": "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",
      "services-amount-earned": "0.0",
      "service-transactions-count": 0
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/account",
          "related": "http://example.org/api/rest/admin/invoices/18/account"
        },
        "data": {
          "type": "accounts",
          "id": "76"
        }
      },
      "originated-destinations": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/originated-destinations",
          "related": "http://example.org/api/rest/admin/invoices/18/originated-destinations"
        }
      },
      "originated-networks": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/originated-networks",
          "related": "http://example.org/api/rest/admin/invoices/18/originated-networks"
        }
      },
      "terminated-destinations": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/terminated-destinations",
          "related": "http://example.org/api/rest/admin/invoices/18/terminated-destinations"
        }
      },
      "terminated-networks": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/terminated-networks",
          "related": "http://example.org/api/rest/admin/invoices/18/terminated-networks"
        }
      },
      "service-data": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/18/relationships/service-data",
          "related": "http://example.org/api/rest/admin/invoices/18/service-data"
        }
      }
    }
  }
}