Skip to main content

Prestation

FieldTypeRequiredDescription
dateStringmandatoryAs YYYY-MM-DD format
tarifNumbermandatoryCould be: 590 or 999
codeNumbermandatoryCode value or null for tarif 999
vatRate StringoptionalShould only be set when vatNumber is defined.
Possible value: 0.0%, 2.5%, 7.7%
Default to 0.0%
quantityNumbermandatoryA decimal value
totalPriceNumbermandatoryA decimal or float value rounded to 2 decimals
serviceDescriptionStringoptionalRequired with tarif/code: 999/null, 590/1302 and 590/1310

All availables prestations are availible in the Tarifs section.

Exemple

Required fields only

{
"date": "2022-03-22",
"tarif": 590,
"code": 1004,
"quantity": 2,
"totalPrice": 21
}

All fields

info

In this case, vatNumber should be defined at the invoice level.

{
"date": "2022-03-22",
"tarif": 999,
"code": null,
"vatRate": "7.7%",
"quantity": 5,
"totalPrice": 100.55,
"serviceDescription": "Service description"
}