Last updated 5 months ago
curl -L \ --url '/subscriptions'
[ { "id": 1, "title": "Basic", "price": 1000, "priority": 1, "usersLimit": 10, "teamsLimit": 5 } ]
curl -L \ --url '/subscriptions/me?teamId=text'
{ "teamId": "team_id", "subscriptionId": "sub_1F7X2Y2eZvKYlo2C0q0G5Z2e", "endDate": "2023-01-01T00:00:00Z", "price": 1000, "status": "active", "tier": "Basic", "priority": 1, "usersLimit": 10, "teamsLimit": 5 }
curl -L \ --request DELETE \ --url '/subscriptions/{id}'
{ "message": "Subscription tier deleted successfully", "description": "The subscription tier has been deleted successfully." }
Basic
Basic subscription tier
1000
1
10
5
true
curl -L \ --request POST \ --url '/subscriptions' \ --header 'Content-Type: application/json' \ --data '{ "name": "Basic", "description": "Basic subscription tier", "features": [ { "name": "Feature 1" } ], "price": 1000, "priority": 1, "usersLimit": 10, "teamsLimit": 5, "isPopular": true }'
{ "id": 1, "title": "Basic", "price": 1000, "priority": 1, "usersLimit": 10, "teamsLimit": 5 }
price_1F7X2Y2eZvKYlo2C0q0G5Z2e
team_id
curl -L \ --request POST \ --url '/subscriptions/register' \ --header 'Content-Type: application/json' \ --data '{ "priceId": "price_1F7X2Y2eZvKYlo2C0q0G5Z2e", "quantity": 1, "teamId": "team_id", "isTeamCreation": true }'
{ "redirect": true, "url": "https://checkout.stripe.com/pay/cs_test_a1b2c3d4e5f6g7h8i9j0" }
sub_1F7X2Y2eZvKYlo2C0q0G5Z2e
curl -L \ --request POST \ --url '/subscriptions/cancel' \ --header 'Content-Type: application/json' \ --data '{ "subscription": "sub_1F7X2Y2eZvKYlo2C0q0G5Z2e" }'
{ "message": "Subscription period cancelled successfully", "description": "The subscription period has been cancelled successfully." }
curl -L \ --request POST \ --url '/subscriptions/cancel-immediately' \ --header 'Content-Type: application/json' \ --data '{ "subscription": "sub_1F7X2Y2eZvKYlo2C0q0G5Z2e" }'
{ "message": "Subscription cancelled successfully", "description": "The subscription has been cancelled successfully." }
curl -L \ --request POST \ --url '/subscriptions/renew' \ --header 'Content-Type: application/json' \ --data '{ "subscription": "sub_1F7X2Y2eZvKYlo2C0q0G5Z2e" }'
{ "message": "Subscription period renewed successfully", "description": "The subscription period has been renewed successfully." }
curl -L \ --request PUT \ --url '/subscriptions' \ --header 'Content-Type: application/json' \ --data '{ "name": "Basic", "description": "Basic subscription tier", "features": [ { "name": "Feature 1" } ], "price": 1000, "priority": 1, "usersLimit": 10, "teamsLimit": 5, "isPopular": true }'