Skip to content
On this page

Get Orders

How to get orders by your account.

curl https://sync.wrkoutstore.com/api/v1/orders?08/08/2023 00:00&endDate=08/09/2023 23:59 \
  -H "username: YOUR_USERNAME" \
  -H "password: YOUR_PASSWORD" \
  -H "Content-Type: application/json" \

Required query params:

  • startDate
  • endDate

In this format: MM/dd/yyyy HH:mm

Required headers:

  • username
  • password

Sample response:

{
	"statusCode": 200,
	"body": {
		"orders": [
			{
				"id": "64da8e2d1150cd5e0687aeb3",
				"order_number": "1010-503",
				"order_date": "2023-08-15T00:27:00.000Z",
				"order_status": 2,
				"last_modified": "2023-08-15T00:27:00.000Z",
				"payment_method": "Credit Card",
				"order_total": 0,
				"tax_amount": 0,
				"customer_notes": "",
				"internal_notes": "",
				"gift": false,
				"gift_message": "",
				"custom_field1": "",
				"custom_field2": "",
				"custom_field3": "",
				"customer": {
					"customer_code": "",
					"bill_to": {
						"name": "ilia test",
						"company": "",
						"phone": "1231231234",
						"email": "ilia@wrkout.com"
					},
					"ship_to": {
						"name": "ilia test",
						"company": "",
						"address1": "123 p",
						"address2": "",
						"city": "vegas",
						"state": "NV",
						"postal_code": "30000",
						"country": "US",
						"phone": "1231231234"
					}
				},
				"items": [
					{
						"sku": "40616547811413",
						"name": "Garden of Life Vitamin Code Raw Zinc (420 Capsules) ++",
						"image_url": "p_1027_GL00420_1.",
						"weight": 1,
						"weight_units": "lb",
						"quantity": 1,
						"unit_price": 28.95,
						"location": ""
					}
				]
			}
		]
	}
}