Create fulfillment
documentedCreate a fulfillment to mark an order as shipped.
POST /v2/fulfillmentsFulfillmentsno 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://api.shipstation.com/v2/fulfillments" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "api-key: {{SHIPSTATION_API_KEY}}" \
-d '{"fulfillments": [{"shipment_id": "{{$shipment_id}}","tracking_number": "{{$tracking_number}}","carrier_code": "{{$carrier_code}}","ship_date": "{{$ship_date}}","notify_customer": {{$notify_customer}},"notify_order_source": {{$notify_order_source}}}]}'