Subscription
How to create a new Stripe subscription for the logged user
Calling this API will immediately charge the user (or after the trial has ended). Based on the subscription charge period, it will continue to charge the user.
For the subscription lifecycle please refer to Stripe documentation
POST https://mburger.cloud/api/subscriptions
Parameters
Name | Type | Required | Description |
subscription | string | Yes | Subscription identifier chosen on Stripe dashboard. |
token | string | No | Source token provided by the Stripe SDK, it is not required if the user is already a customer and wants to use the default card. |
discount_code | string | No | Identifier of discount code. |
trial_days | int | No | Number of days before the first charge of the subscription. |
quantity | int | No | Quantity of subscriptions you'll need to subscribe; generally 1 or no data. |
meta | JSON | No | Additional data to save for the subscription. |
Last updated