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
referenceCode String? Optional. Nullable. An optional reference code that can be used by the customer to identify the invoice.

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
referenceCode String? Optional. Nullable. An optional reference code that can be used by the customer to identify the invoice.

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,
    "referenceCode": "..."
}

Response

When returned in a response.

Example 1

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