Resource Information


Description Endpoint to retrieve all orders from your Shopify store.
Resource URL https://api.mpstoolbox.com/v1/orders/
Rate Limited False
Response Format JSON
Authentication API-Key

Parameters


Parameter Type Description Optional Default
None Retrieves a list of all orders without requiring any parameters. True NULL

Example


get https://api.mpstoolbox.com/v1/orders/

Request

{
  "timestamp" : "1535774400",
  "outputXml" : false
}

Response

{
  "1078": {
    "general": {
      "order_id": 5806342832278,
      "order_type": "order",
      "order_status": null,
      "order_name": "#1078",
      "financial_status": "paid",
      "fulfillment_status": null,
      "send_receipt": null,
      "note": null,
      "shipment_status": null
    },
    "customer": {
      "id": 6850631565462,
      "first_name": "Noah",
      "last_name": "Miller",
      "email": "nmiller@theb2btoolbox.com",
      "verified_email": true,
      "phone": null,
      "tags": "Purchase Order",
      "currency": "CAD"
    },
    "shipping_address": {
      "first_name": "Noah",
      "last_name": "Miller",
      "address1": "123her",
      "address2": null,
      "company": "Miller, Noah",
      "city": "Kingston",
      "state_province": "ON",
      "zip_postal": "K7M 9K7",
      "country": "Canada",
      "phone": null
    },
    "billing_address": {
      "first_name": "Noah",
      "last_name": "Miller",
      "address1": "123her",
      "address2": null,
      "company": "Miller, Noah",
      "city": "Kingston",
      "state_province": "ON",
      "zip_postal": "K7M 9K7",
      "country": "Canada",
      "phone": null
    },
    "line_items": [
      {
        "id": 13692349218966,
        "variant_id": 42978018984086,
        "quantity": 1,
        "product_name": "Kyocera TASKalfa MA4500ci",
        "sku": "1102Z72US0",
        "weight": null,
        "weight_unit": null
      }
    ]
  },
  "1079": {
    "general": {
      "order_id": 5806345257110,
      "order_type": "order",
      "order_status": null,
      "order_name": "#1079",
      "financial_status": "paid",
      "fulfillment_status": null,
      "send_receipt": null,
      "note": null,
      "shipment_status": null
    },
    "customer": {
      "id": 7512909021334,
      "first_name": "Carena Mae",
      "last_name": "Manzano",
      "email": "carenamanzano@gmail.com",
      "verified_email": true,
      "phone": null,
      "tags": "",
      "currency": "CAD"
    },
    "shipping_address": {
      "first_name": "Carena Mae",
      "last_name": "Manzano",
      "address1": "15 Gildner Street",
      "address2": "Unit 1",
      "company": null,
      "city": "Kitchener",
      "state_province": "ON",
      "zip_postal": "N2G 2H2",
      "country": "Canada",
      "phone": null
    },
    "billing_address": {
      "first_name": "Carena Mae",
      "last_name": "Manzano",
      "address1": "15 Gildner Street",
      "address2": "Unit 1",
      "company": null,
      "city": "Kitchener",
      "state_province": "ON",
      "zip_postal": "N2G 2H2",
      "country": "Canada",
      "phone": null
    },
    "line_items": [
      {
        "id": 13692353839254,
        "variant_id": 42978018984086,
        "quantity": 1,
        "product_name": "Kyocera TASKalfa MA4500ci",
        "sku": "1102Z72US0",
        "weight": null,
        "weight_unit": null
      }
    ]
  },
  "1080": {
    "general": {
      "order_id": 5849012142230,
      "order_type": "order",
      "order_status": null,
      "order_name": "#1080",
      "financial_status": "pending",
      "fulfillment_status": null,
      "send_receipt": null,
      "note": "",
      "shipment_status": null
    },
    "customer": {
      "id": 6326749233302,
      "first_name": "Caleb",
      "last_name": "Huard",
      "email": "chuard@mpstoolbox.com",
      "verified_email": true,
      "phone": null,
      "tags": "Purchase Order",
      "currency": "CAD"
    },
    "shipping_address": {
      "first_name": "Caleb",
      "last_name": "Huard",
      "address1": "305",
      "address2": "Rose Abbey Dr",
      "company": null,
      "city": "Kingston",
      "state_province": "ON",
      "zip_postal": "K7K 0A3",
      "country": "Canada",
      "phone": "613-483-5061"
    },
    "billing_address": {
      "first_name": "Caleb",
      "last_name": "Huard",
      "address1": "305",
      "address2": "Rose Abbey Dr",
      "company": null,
      "city": "Kingston",
      "state_province": "ON",
      "zip_postal": "K7K 0A3",
      "country": "Canada",
      "phone": "613-483-5061"
    },
    "line_items": [
      {
        "id": 13774506819734,
        "variant_id": 44038691717270,
        "quantity": 2,
        "product_name": "Lenovo Lenovo ThinkPad E14 Gen 2 20TA - Core i7 1165G7 / 2.8 GHz - Win 10 Pro 64-bit - Iris Xe Graphics - 16 GB RAM - 512 GB SSD NVMe - 14\" IPS touchscreen 1920 x 1080 (Full HD) - Wi-Fi 6 - black - kbd: US",
        "sku": "20TA004MUS",
        "weight": null,
        "weight_unit": null
      }
    ]
  }
}

Error Response

{
  "code": 204,
  "data": "No Data Found"
}