Update plan
documentedUpdate a plan.
PUT /sites/{site_id}/plans/{plan_id}Plansno 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}}' \
-X PUT \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Basic {{RECURLY_API_KEY}}' \
-d '{"name": "{{$name}}", "description": "{{$description}}", "interval_unit": "{{$interval_unit}}", "interval_length": {{$interval_length}}, "unit_amount_in_cents": {{$amount_in_cents}}, "setup_fee_in_cents": {{$setup_fee_in_cents}}, "currency": "{{$currency}}"}'