Invoice

Endpoint to retrieve data for invoices.

Finds Invoices by filtering a specific conference(frame).

get

Gets Invoice objects.

Authorizations
Path parameters
idinteger · int64Required

Id of the conference the invoices are loaded for.

Query parameters
Responses
200

Successful response

application/json
get
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?