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.eyJzdWIiOjE0MCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc2NzM1ODU2N30.IHofHjw03yMmNjaUKVYg_UoMFX6v58X79ZlsapOnthc
Host: example.org
Cookie: 

Route

POST /api/rest/admin/invoices

Body

{"data":{"type":"invoices","attributes":{"start-date":"2025-12-02","end-date":"2026-01-02"},"relationships":{"account":{"data":{"type":"accounts","id":"75"}}}}}

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/"af9e3672556b3c3b38e382ec4bba9ff9"
cache-control: max-age=0, private, must-revalidate
x-request-id: c4766d0e-0d14-45d3-82bc-aa7704f2c949
x-runtime: 0.028633
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": "2025-12-02T00:00:00.000Z",
      "end-date": "2026-01-02T00: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": "75"
        }
      },
      "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"
        }
      }
    }
  }
}