Create add-on for plan
documentedCreate an add-on for a plan.
POST /sites/{site_id}/plans/{plan_id}/add_onsPlansno 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://v3.recurly.com/sites/{{$site_id}}/plans/{{$plan_id}}/add_ons" \
-X POST \
-u "{{RECURLY_API_KEY}}:" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"code": "{{$code}}", "name": "{{$name}}", "default_quantity": {{$default_quantity}}, "currencies": [{"currency": "{{$currency}}", "unit_amount": {{$unit_amount}}}]}'