GET /orders/group/@id
When you place an order at a shop or multiple shops, a order_group is created that bundles all one or multiple orders. Use this endpoint to query all the orders of an order_group.
This endpoint requires authentication.
Header | Value |
---|---|
Authorization | Set the value to Bearer + + access_token |
Replace the @ keywords in the URL with their corresponding value.
A dictionary with fields
Field | Type | Description |
---|---|---|
id | Int | An integer value |
GET /orders/group/19 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.4.0
Accept-Language: en-US,en;q=0.5
Field | Type | Description |
---|---|---|
id | Int | Id of the order group |
orders | [Order.simple] | Array of Order.simple |
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 8007
{
"id": 15,
"orders": [
{
"id": 17,
"status": "PENDING",
"valid": true,
"order_nr": 10,
"prices": {
"price": {
"value": 10,
"currency": "EUR"
},
"discount": {
"value": 17,
"currency": "EUR"
},
"warranty": {
"value": 16,
"currency": "EUR"
},
"delivery_cost": {
"value": 11,
"currency": "EUR"
},
"invoice_cost": {
"value": 17,
"currency": "EUR"
},
"sms_cost": {
"value": 10,
"currency": "EUR"
},
"transaction_cost": {
"value": 17,
"currency": "EUR"
},
"price_to_pay": {
"value": 13,
"currency": "EUR"
},
"price_with_discount": {
"value": 12,
"currency": "EUR"
}
},
"payment_method": "point_of_sale",
"checkout": {
"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": 17
},
"shop": {
"id": 15,
"name": "Trent Bosco",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"currency": "EUR"
},
"created_at": 1657086060,
"joyn": {
"points": 19,
"collect_url": "https://example.com",
"qr_code_url": "https://example.com"
},
"payment_status": "pending",
"currency": "EUR"
},
{
"id": 10,
"status": "PENDING",
"valid": false,
"order_nr": 14,
"prices": {
"price": {
"value": 18,
"currency": "EUR"
},
"discount": {
"value": 16,
"currency": "EUR"
},
"warranty": {
"value": 11,
"currency": "EUR"
},
"delivery_cost": {
"value": 18,
"currency": "EUR"
},
"invoice_cost": {
"value": 11,
"currency": "EUR"
},
"sms_cost": {
"value": 10,
"currency": "EUR"
},
"transaction_cost": {
"value": 10,
"currency": "EUR"
},
"price_to_pay": {
"value": 15,
"currency": "EUR"
},
"price_with_discount": {
"value": 17,
"currency": "EUR"
}
},
"payment_method": "point_of_sale",
"checkout": {
"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": 17
},
"shop": {
"id": 18,
"name": "Dr. Doug Hintz V",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"currency": "EUR"
},
"created_at": 1657086060,
"joyn": {
"points": 15,
"collect_url": "https://example.com",
"qr_code_url": "https://example.com"
},
"payment_status": "pending",
"currency": "EUR"
},
{
"id": 16,
"status": "PENDING",
"valid": false,
"order_nr": 17,
"prices": {
"price": {
"value": 13,
"currency": "EUR"
},
"discount": {
"value": 11,
"currency": "EUR"
},
"warranty": {
"value": 14,
"currency": "EUR"
},
"delivery_cost": {
"value": 16,
"currency": "EUR"
},
"invoice_cost": {
"value": 16,
"currency": "EUR"
},
"sms_cost": {
"value": 16,
"currency": "EUR"
},
"transaction_cost": {
"value": 12,
"currency": "EUR"
},
"price_to_pay": {
"value": 10,
"currency": "EUR"
},
"price_with_discount": {
"value": 10,
"currency": "EUR"
}
},
"payment_method": "point_of_sale",
"checkout": {
"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": 11
},
"shop": {
"id": 17,
"name": "Lawrence Reynolds",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"currency": "EUR"
},
"created_at": 1657086060,
"joyn": {
"points": 11,
"collect_url": "https://example.com",
"qr_code_url": "https://example.com"
},
"payment_status": "pending",
"currency": "EUR"
}
]
}