The contract
object contain list of contracts, including invoices, to be used as basis for the claim.
Attributes | Type | Description |
---|---|---|
description |
string | The description of the contract. |
category |
string | This field can be used to group claims at the contract level (from the company's point of view). |
startDate |
date | The date the contract was created. |
endDate |
date | The end date of the contract. |
invoices |
object | All Invoices associated with a specific claim. Multiple invoices can be provided. |
additionalProperties |
object | A list of additional properties, which belongs to the invoice. A key value pair. |
"contracts": [
{
"contractNumber": "V8157366331",
"startDate": "2018-06-23",
"endDate": "2023-06-23",
"invoices": [
{
"invoiceNumber": "I5408705335",
"invoiceDate": "2023-06-23",
"remainingAmount": 100,
"originalAmount": 120,
"currency": "EUR"
},
{
"invoiceNumber": "I4055478723",
"invoiceDate": "2023-06-23",
"remainingAmount": 100,
"originalAmount": 120,
"currency": "EUR"
}
]
}
]
Do you find this page helpful?