Sign in

Updated order

documented

Webhook invoked when an order is updated.

POST /updatedOrderOrderno implementation yet0 runs
No 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://{{$webhook_domain}}/updatedOrder" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{ "orderNumber": "{{$order_number}}", "status": "{{$status}}", "supplierId": {{$supplier_id}}, "supplierName": "{{$supplier_name}}", "supplierAlias": "{{$supplier_alias}}", "dateUpdated": "{{$date_updated}}", "totalAmount": {{$total_amount}}, "totalCurrency": "{{$total_currency}}", "customer": {"id": "{{$customer_id}}", "name": "{{$customer_name}}", "email": "{{$customer_email}}"}, "items": [{"productCode": "{{$item_code}}", "quantity": {{$item_qty}}, "price": {{$item_price}}}] }'
Updated order · Rezdy · OpenIntegrations