Create subscription
documentedCreate a new subscription for a customer or merchant.
POST /subscriptionsSubscriptionsno 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.revolut.com/api/Subscriptions" \
-X POST \
-H "Authorization: Bearer {{REVOLUT_SECRET}}" \
-H "Revolut-Api-Version: 2025-12-04" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Idempotency-Key: {{$idempotency_key}}" \
-d '{"plan_variation_id":"{{$plan_variation_id}}","customer_id":"{{$customer_id}}","external_reference":"{{$external_reference}}","setup_order_redirect_url":"{{$setup_order_redirect_url}}","trial_duration":"{{$trial_duration}}"}'