v1

latestOpenAPI 3.1.02026-07-132363652.9 MB
Shopify Orders

Create multiple Shopify orders for a merchant

Create multiple Shopify orders for a merchant

post/api/v1/shopify-orders/bulk

Request body

merchant_idstring uuid

Merchant ID. Defaults to the logged-in merchant if not provided. Required for admin tokens.

ordersobject[] required

Array of Shopify order data objects

Example request

{
  "merchant_id": "550e8400-e29b-41d4-a716-446655440000",
  "orders": [
    {
      "order_id": "12345",
      "total": "100.00"
    }
  ]
}

Response

Created

successboolean

Indicates if the request was successful

dataobject[]

Array of Shopify orders

Example response

{
  "success": true
}