Order API
Create Shopify orders with store credit automatically applied with the Shopwaive Order API
Good to know: This API method provides developers the ability to expedite cart creation with a direct link to checkout with stacked discounts (i.e. line items discounted with promo and store credit applied). Gift cards can also be optionally applied at checkout.
GET orders endpoint
Search and filter customer orders by including any combination of query key value pairs id
,email
,created_at_min
, or created_at_max
appended to the /api/orders endpoint. A maximum of 250 records per request are returned in the response body. Dates should use ISOString format when appended as a query string, for example, new Date().toISOString().
POST
order endpoint
POST
order endpointHeader
X-Shopwaive-Access-Token
Store's platform API key for store (required)
X-Shopwaive-Platform
Store's platform (required)
Content-Type
Content type
Request Body
customerid
Customer id associated with store's platform
free_shipping
Boolean
tags
Tags to apply to order
order_notes
Additional details or notes to apply to order
description
Description of credit applied (i.e. Store Credit)
amount
Amount of credit to apply to order
cart
Customer cart associated with order
Response Body
status
Status message
checkout_url
Checkout url to be used by customer for payment
Last updated