Sign in

Update fulfillment

documented

Update a specific Fulfillment by ID for the given order.

PUT /v1/orders/{order_id}/fulfillments/{id}.jsonOrdersno 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://api.storenvy.com/v1/orders/{{$order_id}}/fulfillments/{{$id}}.json" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"tracking_number": "{{$tracking_number}}", "shipping_company": "{{$shipping_company}}", "note_to_customer": "{{$note_to_customer}}", "notify_customer": {{$notify_customer}}}'
Update fulfillment · Storenvy · OpenIntegrations