Invoices API

create new entry

POST /api/rest/admin/invoices

Parameters

Name Description
data[type] Resource type (invoices)
data[attributes][start-date] Start date
data[attributes][end-date] End date
data[relationships][account] Account

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE0OCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc4MTA0MjUwMX0.9YlZ2h8K6xu5MJZgnAjVqkHkTgirBH8UNbzV6LT3n9o
Host: example.org
Cookie: 

Route

POST /api/rest/admin/invoices

Body

{"data":{"type":"invoices","attributes":{"start-date":"2026-05-09","end-date":"2026-06-09"},"relationships":{"account":{"data":{"type":"accounts","id":"77"}}}}}

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
location: http://example.org/api/rest/admin/invoices/19
vary: Accept
etag: W/"e379d0fcc9a0a5e32fdb21e3d7835f0c"
cache-control: max-age=0, private, must-revalidate
x-request-id: de827216-7825-4a04-bf69-c9781d0ca443
x-runtime: 0.027101
content-length: 2156

Status

201 Created

Body

{
  "data": {
    "id": "19",
    "type": "invoices",
    "links": {
      "self": "http://example.org/api/rest/admin/invoices/19"
    },
    "attributes": {
      "reference": "19",
      "state": "New",
      "invoice-type": "Manual",
      "start-date": "2026-05-09T00:00:00.000Z",
      "end-date": "2026-06-09T00:00:00.000Z",
      "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/19/relationships/account",
          "related": "http://example.org/api/rest/admin/invoices/19/account"
        },
        "data": {
          "type": "accounts",
          "id": "77"
        }
      },
      "originated-destinations": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/19/relationships/originated-destinations",
          "related": "http://example.org/api/rest/admin/invoices/19/originated-destinations"
        }
      },
      "originated-networks": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/19/relationships/originated-networks",
          "related": "http://example.org/api/rest/admin/invoices/19/originated-networks"
        }
      },
      "terminated-destinations": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/19/relationships/terminated-destinations",
          "related": "http://example.org/api/rest/admin/invoices/19/terminated-destinations"
        }
      },
      "terminated-networks": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/19/relationships/terminated-networks",
          "related": "http://example.org/api/rest/admin/invoices/19/terminated-networks"
        }
      },
      "service-data": {
        "links": {
          "self": "http://example.org/api/rest/admin/invoices/19/relationships/service-data",
          "related": "http://example.org/api/rest/admin/invoices/19/service-data"
        }
      }
    }
  }
}