Invoice
Endpoint to retrieve data for invoices.
Gets Invoice
objects.
Autorisierungen
Pfadparameter
idinteger · int64Erforderlich
Id of the conference the invoices are loaded for.
Abfrageparameter
Antworten
200
Successful response
application/json
400
Bad Request
application/json
401
Authentication problem
application/json
403
Forbidden
application/json
404
No resource found
application/json
429
Rate limitation exceeded
application/json
500
Internal error
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"
}
]
}
]
}
]
}
War das hilfreich?