shopify-fastplus-middleware
  1. Shopify
shopify-fastplus-middleware
  • Start your Apidog journey
  • Sample APIs
    • Find pet by ID
    • Add a new pet to the store
    • Update an existing pet
    • Deletes a pet
    • Finds Pets by status
  • FastPlus
    • /fastplus/products
    • /fastplus/orders
    • /fastplus/products/id
  • Shopify
    • shopify/locations
      GET
    • test-webhook
      POST
    • /shopify/products/[id]
      GET
    • /shopify/products
      GET
    • /shopify/products
      POST
    • /shopify/products/{product_id}
      DELETE
    • /shopify/products
      PUT
    • /shopify/products/{product_id}/variants
      GET
    • /shopify/products/{product_id}/variants
      POST
    • /shopify/{product_id}/variant/{variant_id}
      DELETE
    • /shopify/products/{product_id}/variants/{variant_id}
      PUT
    • /shopify/inventory/{inventory_id}/{location_id}
      GET
    • /shopify/inventory/set
      GET
    • /shopify/inventory/bulk-update
      POST
    • /shopify/orders/{order_id}
      GET
    • /shopify/orders
      POST
    • /shopify/orders/{order_id}/fulfill
      POST
    • /shopify/orders/{order_id}/refund
      POST
    • /shopify/customers
      POST
    • /shopify/customers
      GET
    • /customers/{customer_id}
      GET
    • /shopify/customers/{customer_id}
      PUT
    • /shopify/customers/{customer_id}
      DELETE
    • /shopify/collections
      POST
    • /shopify/collections
      GET
    • /shopify/collections/{collection_id}
      PUT
    • /shopify/webhook/register
      POST
    • Untitled Endpoint
      GET
  • Middleware
    • /middleware/sync/products
  1. Shopify

/shopify/orders

Developing
POST
/shopify/orders
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://2e3e-2806-2f0-7420-fa6f-bc65-bc42-a43-ce7f.ngrok-free.app/shopify/orders' \
--header 'Content-Type: application/json' \
--data-raw '{
  "line_items": [
    {
      "variant_id": 41516356632651,
      "quantity": 2
    }
  ],
  "customer": {
    "first_name": "Lucía",
    "last_name": "Luna",
    "email": "lucia@example.com"
  },
  "financial_status": "paid",
  "shipping_address": {
    "first_name": "Lucía",
    "last_name": "Luna",
    "address1": "123 Calle Ficticia",
    "phone": "555-5555",
    "city": "Ciudad Demo",
    "province": "Antioquia",
    "country": "Colombia",
    "zip": "000000"
  },
  "fulfillment_status": "fulfilled"
}'
Response Response Example
{}

Request

Header Params
Content-Type
string 
optional
Example:
application/json
Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
object {0}
Modified at 2025-06-05 16:32:12
Previous
/shopify/orders/{order_id}
Next
/shopify/orders/{order_id}/fulfill
Built with