Invoice
Retrieves the collection of Invoice resources.
Autorisierungen
Abfrageparameter
id[between]stringOptional
id[gt]stringOptional
id[gte]stringOptional
id[lt]stringOptional
id[lte]stringOptional
Antworten
200
Invoice collection
get
GET /invoices HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
Invoice collection
{
"hydra:member": [
{
"@id": "text",
"@type": "text",
"@context": "text",
"id": 1,
"number": 1,
"date": "2025-09-13T06:43:07.013Z",
"state": "booked",
"orderNumber": "text",
"internalDepartment": "text",
"internalCostcenter": "text",
"reverseChargeState": "none",
"additionalText": "text",
"frame": "/entitiy/1",
"responsiblePerson": "/entitiy/1",
"paymentMethod": "/entitiy/1",
"address": {
"@context": "text",
"@id": "text",
"@type": "text",
"id": 1,
"street": "text",
"zip": "text",
"city": "text",
"phone": "text",
"mobilePhone": "text",
"fax": "text",
"company": "text",
"department": "text",
"aux": "text",
"state": "text",
"country": "text",
"email": "text",
"careOf": "text",
"url": "text",
"vatId": "text"
},
"shippingAddress": {
"@context": "text",
"@id": "text",
"@type": "text",
"id": 1,
"street": "text",
"zip": "text",
"city": "text",
"phone": "text",
"mobilePhone": "text",
"fax": "text",
"company": "text",
"department": "text",
"aux": "text",
"state": "text",
"country": "text",
"email": "text",
"careOf": "text",
"url": "text",
"vatId": "text"
},
"versions": [
"/entitiy/1"
]
}
],
"hydra:totalItems": 1,
"hydra:view": {
"@id": "string",
"type": "string",
"hydra:first": "string",
"hydra:last": "string",
"hydra:previous": "string",
"hydra:next": "string"
},
"hydra:search": {
"@type": "text",
"hydra:template": "text",
"hydra:variableRepresentation": "text",
"hydra:mapping": [
{
"@type": "text",
"variable": "text",
"property": "text",
"required": true
}
]
}
}
Retrieves a Invoice resource.
Autorisierungen
Pfadparameter
idstringErforderlich
Resource identifier
Antworten
200
Invoice resource
404
Resource not found
get
GET /invoices/{id} HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"@id": "text",
"@type": "text",
"@context": "text",
"id": 1,
"number": 1,
"date": "2025-09-13T06:43:07.013Z",
"state": "booked",
"orderNumber": "text",
"internalDepartment": "text",
"internalCostcenter": "text",
"reverseChargeState": "none",
"additionalText": "text",
"frame": "/entitiy/1",
"responsiblePerson": "/entitiy/1",
"paymentMethod": "/entitiy/1",
"address": {
"@context": "text",
"@id": "text",
"@type": "text",
"id": 1,
"street": "text",
"zip": "text",
"city": "text",
"phone": "text",
"mobilePhone": "text",
"fax": "text",
"company": "text",
"department": "text",
"aux": "text",
"state": "text",
"country": "text",
"email": "text",
"careOf": "text",
"url": "text",
"vatId": "text"
},
"shippingAddress": {
"@context": "text",
"@id": "text",
"@type": "text",
"id": 1,
"street": "text",
"zip": "text",
"city": "text",
"phone": "text",
"mobilePhone": "text",
"fax": "text",
"company": "text",
"department": "text",
"aux": "text",
"state": "text",
"country": "text",
"email": "text",
"careOf": "text",
"url": "text",
"vatId": "text"
},
"versions": [
"/entitiy/1"
]
}
War das hilfreich?