Authorization: Bearer ********************
{ "plan_name": "Pro Membership", "client_subid": "SUB_1001", "initial_amount": 1.00, "recurring_amount": 199.00, "interval_type": "monthly", "total_cycles": 12, "name": "Jane Doe", "email": "jane@example.com", "phone": "9876543210", "webhook_url": "https://yoursite.com/api/webhook" }
curl --location 'https://pay.bottercc.com/api/v1/subscription' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data-raw '{ "plan_name": "Pro Membership", "client_subid": "SUB_1001", "initial_amount": 1.00, "recurring_amount": 199.00, "interval_type": "monthly", "total_cycles": 12, "name": "Jane Doe", "email": "jane@example.com", "phone": "9876543210", "webhook_url": "https://yoursite.com/api/webhook" }'
{ "success": true, "sub_id": "sub_4fa9921b34e2c", "client_subid": "SUB_1001", "plan_name": "Pro Membership", "pricing": { "initial_amount": "1.00", "recurring_amount": "199.00", "currency": "INR", "interval": "monthly", "total_cycles": 12 }, "status": "pending_auth", "auth_url": "http://localhost:3000/pay/sub/sub_4fa9921b34e2c", "next_billing_at": "2026-09-20T08:00:00.000Z" }