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

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEzNiwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzAzNX0.uCG7K14VCxAVntQQU6oJGAPtpktXFX-QXBD_fX8RTH0
Host: example.org
Cookie: 

Route

POST /api/rest/admin/invoices

Body

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

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/"a6bfa7c494cac06fc17e66f505d697eb"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: c24ce0dd-515c-4e67-bb06-690020d08a68
X-Runtime: 0.043900
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-02-01T00:00:00.000Z",
      "end-date": "2025-03-01T00: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": "73"
        }
      },
      "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"
        }
      }
    }
  }
}