cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHOPIFY_UPDATE_ORDER' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "SHOPIFY_UPDATE_ORDER", "parameters": { "orderId": "<string>", "email": "<string>", "lineItems": {}, "sendReceipt": true, "fulfillmentStatus": "fulfilled", "financialStatus": "pending", "inventoryBehaviour": "bypass", "note": "<string>" } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Order ID : The ID of the Order to update.
Customer email
Line items : View Shopify’s docs (https://shopify.dev/docs/themes/liquid/reference/objects/line_item#line_item-properties) for a list of line item properties. (example: "[ { "title": "Big Brown Bear Boots", "price": 74.99, "quantity": 3, "variant_id": 447654529 } ]")
Send receipt
Fulfillment status
fulfilled
null
partial
restocked
Financial status
pending
authorized
partially_paid
paid
partially_refunded
refunded
voided
Inventory behavior
bypass
decrement_ignoring_policy
decrement_obeying_policy
Note
Success
Was this page helpful?