Skip to main content

Client Hosting Invoice

PropertyTypeDescriptionInformation
idintIdentifierUnique for single Client Contract Invoice.
invoice_numberintInvoice numberUnique for single Client Contract Invoice.
client_hosting_idintClient Hosting identifierUnique for single Client Hosting.
datedateWhen invoice has been generated
amount_of_moneyMonetary (array<string, Decimal>)Amount of money
past_deadlineboolInvoice number was not filled yet and 7 days passed.
past_deadline_notified_atdate/nullDate of past_deadline notification.
created_atdateClient creation dateDate of Client creation
updated_atdateClient latest update dateDate of latest Client update

Example:

{
"id": 6,
"invoice_number": 20230130,
"client_hosting_id": 6,
"date": "2024-01-29T23:00:00.000000Z",
"amount_of_money": {
"CZK": {
"value": 120.22,
"formatted": "120,22 Kč"
}
},
"past_deadline": false,
"past_deadline_notified_at": null,
"created_at": "2024-01-30T11:00:05+0100",
"updated_at": "2024-01-30T11:08:01+0100",
"_links": [
{
"href": "/api/v0/client-contract-invoices/6",
"rel": "self",
"type": "GET"
}
]
}