Invoice

Endpoint to retrieve data for invoices.

Finds Invoices by filtering a specific conference(frame).

get

Gets Invoice objects.

Authorizations
tokenstringRequired

Api key has to be used to authenticate against the server. The token parameter has must be sent in the header

Path parameters
idinteger · int64Required

Id of the conference the invoices are loaded for.

Query parameters
Responses
get
/rest-api/v2/frame/{id}/invoice/
GET /rest-api/v2/frame/{id}/invoice/ HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {},
  "data": [
    {
      "id": 1,
      "number": 1,
      "date": "text",
      "sum": 1,
      "currency": "text",
      "careOf": "text",
      "state": "0",
      "versions": 1,
      "invoiceVersions": [
        {
          "version": 1,
          "invoiceLog": [
            {
              "name": "text",
              "amount": 1,
              "taxRate": 1,
              "priceGroup": "text",
              "category": "text"
            }
          ]
        }
      ]
    }
  ]
}

Was this helpful?