Field | Type | Description |
---|---|---|
method | String | String enumarion of 'delivery', 'takeout', 'latch' |
date | Date | Date when the consumer will collect his order or when the order will get delivered |
time | Time | Time in HH:MM format |
end_time | Time | Optional. If set, the order will get delivered/collected between time and end_time, instead of an exact time. |
address | Address.simple | Optional. Location where the order will get collected or delivered |
notes | String? | Optional. Nullable. The notes field is provided if method equals 'delivery'. The value can be null. If set contains the delivery notes |
name | String | Optional. Name of the latch location (currently only for method latch) |
latch_id | Int | Optional. ID of the latch location (only for method latch) |
comment | String | Optional. A general comment from the customer about the order |
notification_method | String | Optional. String enumarion of 'email', 'sms' |
{
"method": "delivery",
"date": "2019-01-31",
"time": "12:00",
"end_time": "12:00",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
},
"notes": "...",
"name": "...",
"latch_id": 10,
"comment": "...",
"notification_method": "email"
}