Sign in

Issue subscription

documented

Issue a subscription order via the API.

POST /api/v1/subscriptions/{subscription_id}/issueSubscriptionsno 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://{{SENDOWL_API_KEY}}:{{SENDOWL_SECRET}}@api.sendowl.com/api/v1/subscriptions/{{$subscription_id}}/issue" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"order": {"buyer_email": "{{$buyer_email}}", "buyer_name": "{{$buyer_name}}", "buyer_id": "{{$buyer_id}}", "buyer_status": "{{$buyer_status}}", "shipping_address1": "{{$shipping_address1}}", "shipping_address2": "{{$shipping_address2}}", "shipping_city": "{{$shipping_city}}", "shipping_region": "{{$shipping_region}}", "shipping_postcode": "{{$shipping_postcode}}", "shipping_country": "{{$shipping_country}}", "billing_address1": "{{$billing_address1}}", "billing_address2": "{{$billing_address2}}", "billing_city": "{{$billing_city}}", "billing_region": "{{$billing_region}}", "billing_postcode": "{{$billing_postcode}}", "billing_country": "{{$billing_country}}", "can_market_to_buyer": {{$can_market_to_buyer}}, "buyer_ip_address": "{{$buyer_ip_address}}", "dispatched_at": "{{$dispatched_at}}", "tag": "{{$tag}}", "issued_at": "{{$issued_at}}", "financial_transaction": {"payment_gross": {{$payment_gross}}, "payment_tax": {{$payment_tax}}, "payment_currency": "{{$payment_currency}}"}} }}'
Issue subscription · SendOwl · OpenIntegrations