Issue bundle
documentedIssue an order for a bundle via the API for gateway support.
POST /api/v1/packages/{package_id}/issueBundlesno 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.sendowl.com/api/v1/packages/{{$package_id}}/issue" \
-X POST \
-u "{{SENDOWL_API_KEY}}:{{SENDOWL_SECRET}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"order": {"buyer_email": "{{$buyer_email}}", "buyer_name": "{{$buyer_name}}", "giftee_name": "{{$giftee_name}}", "giftee_email": "{{$giftee_email}}", "tag": "{{$tag}}", "shipping_address1": "{{$shipping_address1}}", "shipping_address2": "{{$shipping_address2}}", "shipping_city": "{{$shipping_city}}", "shipping_region": "{{$shipping_region}}", "shipping_postcode": "{{$shipping_postcode}}" } }'"