Subscriptions
Retrieve a subscription
Subscriptions
Retrieve a subscription
Retrieve a subscription for the authenticated workspace by its ID
GET
/
subscriptions
curl --request GET \
--url https://api.reqlick.com/subscriptions \
--header 'Authorization: Bearer <token>'
{
"id": "1110580a82031111aaa01111",
"plan": "FREE",
"billingCycleStart": null,
"stripeId": "<string>",
"domainsLimit": 1000,
"interval": "month",
"projectsLimit": 100,
"usersLimit": 100,
"stockageLimit": 5368709120,
"clicksLimit": 1000000,
"shortLinksLimit": 100,
"qrCodeLinksLimit": 100,
"retentionLimit": "RE_30_DAY",
"fileAvailabilityLimit": "FA_7_DAY",
"isCanceledAtPeriodEnd": false,
"subscriptionScheduleId": null,
"periodEnd": "2024-08-04T20:17:33.000Z",
"isCancelAt": null,
"amount": 0,
"isPaymentFailed": false,
"isPaid": true,
"schedulePlan": null
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Subscription details retrieved successfully
The response is of type object
.
curl --request GET \
--url https://api.reqlick.com/subscriptions \
--header 'Authorization: Bearer <token>'
{
"id": "1110580a82031111aaa01111",
"plan": "FREE",
"billingCycleStart": null,
"stripeId": "<string>",
"domainsLimit": 1000,
"interval": "month",
"projectsLimit": 100,
"usersLimit": 100,
"stockageLimit": 5368709120,
"clicksLimit": 1000000,
"shortLinksLimit": 100,
"qrCodeLinksLimit": 100,
"retentionLimit": "RE_30_DAY",
"fileAvailabilityLimit": "FA_7_DAY",
"isCanceledAtPeriodEnd": false,
"subscriptionScheduleId": null,
"periodEnd": "2024-08-04T20:17:33.000Z",
"isCancelAt": null,
"amount": 0,
"isPaymentFailed": false,
"isPaid": true,
"schedulePlan": null
}