Create order
documentedIssue an order for a single item (bulk orders are not supported).
POST /api/v1/ordersOrdersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{SENDOWL_API_KEY}}:{{SENDOWL_SECRET}}@api.sendowl.com/api/v1/orders" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"order": {"buyer_name": "{{$buyer_name}}", "buyer_email": "{{$buyer_email}}", "shipping_address1": "{{$shipping_address1}}", "shipping_address2": "{{$shipping_address2}}", "shipping_city": "{{$shipping_city}}", "shipping_region": "{{$shipping_region}}", "shipping_postcode": "{{$shipping_postcode}}", "shipping_country": "{{$shipping_country}}", "tag": "{{$tag}}", "cart": {"cart_items": [{"quantity": {{$quantity}}, "product_id": {{$product_id}}}]}}}'"