GET /company/shops/@id/orders
Return all orders (sorted from old to new by default). You can filter the results. If you want to poll for new orders, you should use the future property:
next
value from the API, do immediately another call with the next
query parameters when you finished processing the orders in results
next
value and you received a non-null future
property, then there are no new orders available right now but there might be in the future. Store the future
property somewhere persistent (keep it after a reboot).future
property to the backend and then the backend will give us the new orders together with a next
or future
propertyThe future object will only be available if it is possible that new orders will match your filtering criteria, when you use ascending sorting (default), and if there are no more results left (next
property is null, results
may stil contain some orders).
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 | The id of the shop you are requesting to get the orders from |
Append the querystring with following properties to the URL.
A dictionary with fields
Field | Type | Description |
---|---|---|
status | String | Optional. Only return orders with this status |
created_after | DateTime | Optional. Only return orders that were placed after (including) this date/time. Brussels timezone. Do not use this for pagination as multiple orders might share the same created_at timestamp. |
created_before | DateTime | Optional. Only return orders that were placed before (including) this date/time. Brussels timezone. You can use this together with created_after. Do not use this for pagination as multiple orders might share the same created_at timestamp. |
before_id | Int | Optional. Only return orders created before (not including) the order with the given id. Used for pagination. |
after_id | Int | Optional. Only return orders created after (not including) the order with the given id. Used for pagination. |
sort | String | Optional. Sort the results in ascending (default) or descending order by creation date. Default is ascending. |
GET /company/shops/13/orders?status=PENDING&created_after=2019-01-31+12%3A00%3A00&created_before=2019-01-31+12%3A00%3A00&before_id=15&after_id=18&sort=ascending HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 0.3.0
Accept-Language: en-US,en;q=0.5
Field | Type | Description |
---|---|---|
results | [company.Order.detailed] | Array of company.Order.detailed |
next | Dictionary? | Nullable. The query parameters you need to request the following results. Is null when there are no results left |
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 59958
{
"results": [
{
"id": 13,
"shop_id": 14,
"company_id": 16,
"status": "PENDING",
"order_nr": 10,
"prices": {
"price": 19,
"discount": 10,
"warranty": 19,
"delivery_cost": 17,
"invoice_cost": 11,
"sms_cost": 14,
"transaction_cost": 11,
"price_to_pay": 11
},
"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": 18
},
"products": [
{
"amount": 16,
"persons": 15,
"gram": 10,
"comment": "...",
"product": {
"id": 17,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 14
},
"product_price": {
"id": 11,
"name": "...",
"price": 11
},
"calculated_prices": {
"unit_price": 11,
"price": 12
},
"discount_prices": {
"unit_price": 17,
"price": 13
},
"options": [
{
"id": 19,
"name": "...",
"price_change": 11,
"optionset": {
"id": 19,
"name": "...",
"allow_attachment": true
}
},
{
"id": 13,
"name": "...",
"price_change": 18,
"optionset": {
"id": 17,
"name": "...",
"allow_attachment": true
}
},
{
"id": 16,
"name": "...",
"price_change": 10,
"optionset": {
"id": 16,
"name": "...",
"allow_attachment": false
}
}
],
"uploads": [
{
"upload": {
"id": 17,
"url": "https://example.com"
},
"optionset_id": 12
},
{
"upload": {
"id": 16,
"url": "https://example.com"
},
"optionset_id": 15
},
{
"upload": {
"id": 12,
"url": "https://example.com"
},
"optionset_id": 17
}
],
"code": "..."
},
{
"amount": 15,
"persons": 13,
"gram": 13,
"comment": "...",
"product": {
"id": 19,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 10
},
"product_price": {
"id": 14,
"name": "...",
"price": 12
},
"calculated_prices": {
"unit_price": 14,
"price": 11
},
"discount_prices": {
"unit_price": 16,
"price": 15
},
"options": [
{
"id": 19,
"name": "...",
"price_change": 16,
"optionset": {
"id": 11,
"name": "...",
"allow_attachment": true
}
},
{
"id": 14,
"name": "...",
"price_change": 15,
"optionset": {
"id": 13,
"name": "...",
"allow_attachment": true
}
},
{
"id": 13,
"name": "...",
"price_change": 12,
"optionset": {
"id": 12,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 18,
"url": "https://example.com"
},
"optionset_id": 15
},
{
"upload": {
"id": 16,
"url": "https://example.com"
},
"optionset_id": 11
},
{
"upload": {
"id": 19,
"url": "https://example.com"
},
"optionset_id": 17
}
],
"code": "..."
},
{
"amount": 19,
"persons": 19,
"gram": 12,
"comment": "...",
"product": {
"id": 15,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
}
],
"price_type": "PER_UNIT",
"target_price": false,
"price": 15
},
"product_price": {
"id": 19,
"name": "...",
"price": 13
},
"calculated_prices": {
"unit_price": 14,
"price": 16
},
"discount_prices": {
"unit_price": 11,
"price": 15
},
"options": [
{
"id": 18,
"name": "...",
"price_change": 17,
"optionset": {
"id": 16,
"name": "...",
"allow_attachment": false
}
},
{
"id": 19,
"name": "...",
"price_change": 18,
"optionset": {
"id": 16,
"name": "...",
"allow_attachment": false
}
},
{
"id": 15,
"name": "...",
"price_change": 12,
"optionset": {
"id": 14,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 13,
"url": "https://example.com"
},
"optionset_id": 12
},
{
"upload": {
"id": 13,
"url": "https://example.com"
},
"optionset_id": 19
},
{
"upload": {
"id": 14,
"url": "https://example.com"
},
"optionset_id": 11
}
],
"code": "..."
}
],
"invoice": {
"name": "...",
"vat": "BE0123456789",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
}
},
"isop": {
"origin": "in-store",
"customer_id": 13,
"employee_id": 15
},
"consumer": {
"email": "example@domain.com",
"firstname": "...",
"lastname": "...",
"phone": "+32 475 00 00 00"
},
"created_at": "2019-01-31 12:00:00"
},
{
"id": 16,
"shop_id": 14,
"company_id": 10,
"status": "PENDING",
"order_nr": 10,
"prices": {
"price": 10,
"discount": 19,
"warranty": 16,
"delivery_cost": 17,
"invoice_cost": 17,
"sms_cost": 10,
"transaction_cost": 11,
"price_to_pay": 13
},
"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": 13
},
"products": [
{
"amount": 10,
"persons": 17,
"gram": 10,
"comment": "...",
"product": {
"id": 15,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 13
},
"product_price": {
"id": 12,
"name": "...",
"price": 17
},
"calculated_prices": {
"unit_price": 17,
"price": 10
},
"discount_prices": {
"unit_price": 13,
"price": 15
},
"options": [
{
"id": 18,
"name": "...",
"price_change": 14,
"optionset": {
"id": 12,
"name": "...",
"allow_attachment": true
}
},
{
"id": 19,
"name": "...",
"price_change": 14,
"optionset": {
"id": 16,
"name": "...",
"allow_attachment": false
}
},
{
"id": 18,
"name": "...",
"price_change": 13,
"optionset": {
"id": 13,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 18,
"url": "https://example.com"
},
"optionset_id": 12
},
{
"upload": {
"id": 17,
"url": "https://example.com"
},
"optionset_id": 19
},
{
"upload": {
"id": 14,
"url": "https://example.com"
},
"optionset_id": 17
}
],
"code": "..."
},
{
"amount": 18,
"persons": 15,
"gram": 15,
"comment": "...",
"product": {
"id": 14,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
],
"price_type": "PER_UNIT",
"target_price": false,
"price": 10
},
"product_price": {
"id": 10,
"name": "...",
"price": 16
},
"calculated_prices": {
"unit_price": 11,
"price": 18
},
"discount_prices": {
"unit_price": 13,
"price": 14
},
"options": [
{
"id": 15,
"name": "...",
"price_change": 13,
"optionset": {
"id": 11,
"name": "...",
"allow_attachment": true
}
},
{
"id": 19,
"name": "...",
"price_change": 16,
"optionset": {
"id": 15,
"name": "...",
"allow_attachment": true
}
},
{
"id": 12,
"name": "...",
"price_change": 14,
"optionset": {
"id": 16,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 11,
"url": "https://example.com"
},
"optionset_id": 18
},
{
"upload": {
"id": 10,
"url": "https://example.com"
},
"optionset_id": 13
},
{
"upload": {
"id": 11,
"url": "https://example.com"
},
"optionset_id": 13
}
],
"code": "..."
},
{
"amount": 16,
"persons": 19,
"gram": 13,
"comment": "...",
"product": {
"id": 14,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
}
],
"price_type": "PER_UNIT",
"target_price": false,
"price": 12
},
"product_price": {
"id": 15,
"name": "...",
"price": 15
},
"calculated_prices": {
"unit_price": 16,
"price": 14
},
"discount_prices": {
"unit_price": 18,
"price": 19
},
"options": [
{
"id": 11,
"name": "...",
"price_change": 14,
"optionset": {
"id": 10,
"name": "...",
"allow_attachment": true
}
},
{
"id": 10,
"name": "...",
"price_change": 14,
"optionset": {
"id": 14,
"name": "...",
"allow_attachment": true
}
},
{
"id": 12,
"name": "...",
"price_change": 14,
"optionset": {
"id": 15,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 19,
"url": "https://example.com"
},
"optionset_id": 14
},
{
"upload": {
"id": 18,
"url": "https://example.com"
},
"optionset_id": 18
},
{
"upload": {
"id": 16,
"url": "https://example.com"
},
"optionset_id": 13
}
],
"code": "..."
}
],
"invoice": {
"name": "...",
"vat": "BE0123456789",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
}
},
"isop": {
"origin": "in-store",
"customer_id": 14,
"employee_id": 13
},
"consumer": {
"email": "example@domain.com",
"firstname": "...",
"lastname": "...",
"phone": "+32 475 00 00 00"
},
"created_at": "2019-01-31 12:00:00"
},
{
"id": 15,
"shop_id": 13,
"company_id": 18,
"status": "PENDING",
"order_nr": 12,
"prices": {
"price": 11,
"discount": 16,
"warranty": 16,
"delivery_cost": 15,
"invoice_cost": 13,
"sms_cost": 12,
"transaction_cost": 16,
"price_to_pay": 19
},
"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": 13
},
"products": [
{
"amount": 16,
"persons": 14,
"gram": 14,
"comment": "...",
"product": {
"id": 15,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
}
],
"price_type": "PER_UNIT",
"target_price": false,
"price": 16
},
"product_price": {
"id": 10,
"name": "...",
"price": 14
},
"calculated_prices": {
"unit_price": 15,
"price": 13
},
"discount_prices": {
"unit_price": 15,
"price": 12
},
"options": [
{
"id": 11,
"name": "...",
"price_change": 13,
"optionset": {
"id": 10,
"name": "...",
"allow_attachment": false
}
},
{
"id": 18,
"name": "...",
"price_change": 14,
"optionset": {
"id": 10,
"name": "...",
"allow_attachment": true
}
},
{
"id": 19,
"name": "...",
"price_change": 19,
"optionset": {
"id": 13,
"name": "...",
"allow_attachment": false
}
}
],
"uploads": [
{
"upload": {
"id": 13,
"url": "https://example.com"
},
"optionset_id": 18
},
{
"upload": {
"id": 10,
"url": "https://example.com"
},
"optionset_id": 18
},
{
"upload": {
"id": 12,
"url": "https://example.com"
},
"optionset_id": 13
}
],
"code": "..."
},
{
"amount": 17,
"persons": 10,
"gram": 10,
"comment": "...",
"product": {
"id": 19,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 12
},
"product_price": {
"id": 18,
"name": "...",
"price": 12
},
"calculated_prices": {
"unit_price": 16,
"price": 17
},
"discount_prices": {
"unit_price": 17,
"price": 11
},
"options": [
{
"id": 17,
"name": "...",
"price_change": 17,
"optionset": {
"id": 15,
"name": "...",
"allow_attachment": true
}
},
{
"id": 11,
"name": "...",
"price_change": 10,
"optionset": {
"id": 10,
"name": "...",
"allow_attachment": false
}
},
{
"id": 18,
"name": "...",
"price_change": 11,
"optionset": {
"id": 18,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 14,
"url": "https://example.com"
},
"optionset_id": 17
},
{
"upload": {
"id": 19,
"url": "https://example.com"
},
"optionset_id": 14
},
{
"upload": {
"id": 10,
"url": "https://example.com"
},
"optionset_id": 13
}
],
"code": "..."
},
{
"amount": 19,
"persons": 15,
"gram": 19,
"comment": "...",
"product": {
"id": 17,
"name": "...",
"images": [
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
},
{
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": true
}
],
"price_type": "PER_UNIT",
"target_price": true,
"price": 19
},
"product_price": {
"id": 14,
"name": "...",
"price": 17
},
"calculated_prices": {
"unit_price": 12,
"price": 10
},
"discount_prices": {
"unit_price": 17,
"price": 16
},
"options": [
{
"id": 18,
"name": "...",
"price_change": 10,
"optionset": {
"id": 17,
"name": "...",
"allow_attachment": false
}
},
{
"id": 11,
"name": "...",
"price_change": 18,
"optionset": {
"id": 18,
"name": "...",
"allow_attachment": true
}
},
{
"id": 16,
"name": "...",
"price_change": 17,
"optionset": {
"id": 11,
"name": "...",
"allow_attachment": true
}
}
],
"uploads": [
{
"upload": {
"id": 19,
"url": "https://example.com"
},
"optionset_id": 16
},
{
"upload": {
"id": 11,
"url": "https://example.com"
},
"optionset_id": 14
},
{
"upload": {
"id": 18,
"url": "https://example.com"
},
"optionset_id": 12
}
],
"code": "..."
}
],
"invoice": {
"name": "...",
"vat": "BE0123456789",
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
}
},
"isop": {
"origin": "in-store",
"customer_id": 16,
"employee_id": 11
},
"consumer": {
"email": "example@domain.com",
"firstname": "...",
"lastname": "...",
"phone": "+32 475 00 00 00"
},
"created_at": "2019-01-31 12:00:00"
}
],
"next": {
"status": "PENDING",
"created_after": "2019-01-31 12:00:00",
"created_before": "2019-01-31 12:00:00",
"before_id": 16,
"after_id": 15,
"sort": "ascending"
}
}