Returns orders for seller.
Query parameters
-
new
boolean get new orders only
Default value is
false
. -
createdAt
string date of oldier order (format: yyyy-mm-dd)
-
updatedAt
string date of oldier order update (format: yyyy-mm-dd)
-
status
string Shipping status of the order ('pending_confirmation': no tracking added yet, 'ongoing_shipping': order is moving, 'shipped': order is delivered, 'error_shipping': an error as occured during the shipment, 'cancelled': order as been cancelled )
-
page
string actual page
Default value is
1
. -
pageSize
string page's size
Default value is
50
.
GET
/api/v2/orders
curl \
-X GET https://sandbox-w6wvm5a-qhobd463uhz3w.eu-2.platformsh.site/api/v2/orders \
-H "apikey: $API_KEY"
Response examples (200)
{
"count": 42,
"page": 42,
"pageSize": 42,
"result": [
{
"id": 111111,
"bordereau_url": "762b60bbe9f82bca7b80f5747fe959a4",
"price_h_t": 1000,
"price_t_v_a": 200,
"price_t_t_c": 1200,
"shipping_h_t": 100,
"shipping_t_v_a": 20,
"shipping_t_t_c": 120,
"shipping_address_json": "{\"street\":\"a\",\"additionnal\":\"a\",\"postcode\":\"75000\",\"city\":\"a\",\"country\":\"FR\",\"firstname\":\"a\",\"lastname\":\"a\",\"company\":\"A\", \"type\":\"shipping\",\"email\":\"email@dipli.com\",\"telephone\":\"061111111111\",\"deliveryinfos\":null,\"ref\":null}",
"shipping_status": "pending_confirmation",
"tracking_slug": "ups",
"tracking_number": "X12FA123GT",
"delivered_at": "2022-09-01",
"invoiced_at": "2022-09-01",
"public_id": "A-111111",
"created_at": "2022-09-01",
"to_ship": true,
"cart_items": [
{
"tax_class": "TVA Classique",
"product_sku": "APPLE_IPHONE_8_SKU",
"product_name": "Apple iPhone 8 64",
"product_quantity": 10,
"product_extra_infos": {
"extended_images": [
"f6f5692eecb63dde4c94.jpg"
],
"grouped_id": 707026,
"id": 11699153,
"product_id": 25005,
"price": 12000,
"position": "1er",
"name": "Apple iPhone 8 32",
"grade": "Grade C",
"tax_class": "Tva classique",
"color": "Gris sideral",
"packaging": "Chargeur et cable",
"sku": "O3_MQ3D2ZD/A",
"stock": 1
}
}
]
}
]
}
Response examples (400)
{
"code": 400,
"msg": "Bad Request"
}
Response examples (500)
{
"code": 500,
"msg": "Internale Server Error"
}