Create pickup
documentedCreate a pickup request.
POST /v2/pickupsPackage Pickupsno 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/pickups" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "API-Key: {{SHIPSTATION_API_KEY}}" \
-d '{"label_ids": ["{{$label_id}}"], "contact_details": {"name": "{{$contact_name}}", "email": "{{$contact_email}}", "phone": "{{$contact_phone}}"}, "pickup_notes": "{{$pickup_notes}}", "pickup_window": {"start_at": "{{$pickup_start_at}}", "end_at": "{{$pickup_end_at}}"} }'