company.OrderInvoice

Request

Fields when send to the api inside a request.

Field Type Description
name String A String value
vat String A String value
address Address.simple An address
generated Bool A boolean value

Response

Fields when returned by the api in a response.

Field Type Description
id Int An integer value
name String A String value
vat String A String value
address Address.simple An address
generated Bool A boolean value

Examples

Request

When used inside a request.

Example 1

{
    "name": "...",
    "vat": "...",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE"
    },
    "generated": true
}

Response

When returned in a response.

Example 1

{
    "id": 13,
    "name": "...",
    "vat": "...",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE"
    },
    "generated": false
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.7.0 stable