Users
Retrieve usage
Users
Retrieve usage
Retrieve all usage for the authenticated workspace
GET
/
users
/
usage
curl --request GET \
--url https://api.reqlick.com/users/usage \
--header 'Authorization: Bearer <token>'
{
"id": "1110580a82031111aaa03333",
"plan": "FREE",
"billingCycleStart": null,
"stripeId": "cus_11253",
"domainsLimit": 1000,
"projectsLimit": 100,
"usersLimit": 100,
"stockageLimit": 5368709120,
"clicksLimit": 1000000,
"shortLinksLimit": 1000000,
"qrCodeLinksLimit": 1000000,
"retentionLimit": "RE_30_DAY",
"fileAvailabilityLimit": "FA_7_DAY",
"createdAt": "2024-01-01T20:15:00.385Z",
"projects": [
{
"members": [
{
"email": null,
"userId": "1110580a82031111aaa03333"
}
],
"_count": {
"views": 0,
"domains": 1
},
"usage": [
{
"snap_document_size": "220637"
}
]
}
],
"_count": {
"projects": 4
},
"projectUsage": 4,
"domainsUsage": 4,
"clicksUsage": 43,
"shortLinksUsage": 2,
"qrCodeLinksUsage": 0,
"storageUsage": 244281,
"seatsUsage": 4,
"isPaid": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
User usage information
The response is of type object
.
curl --request GET \
--url https://api.reqlick.com/users/usage \
--header 'Authorization: Bearer <token>'
{
"id": "1110580a82031111aaa03333",
"plan": "FREE",
"billingCycleStart": null,
"stripeId": "cus_11253",
"domainsLimit": 1000,
"projectsLimit": 100,
"usersLimit": 100,
"stockageLimit": 5368709120,
"clicksLimit": 1000000,
"shortLinksLimit": 1000000,
"qrCodeLinksLimit": 1000000,
"retentionLimit": "RE_30_DAY",
"fileAvailabilityLimit": "FA_7_DAY",
"createdAt": "2024-01-01T20:15:00.385Z",
"projects": [
{
"members": [
{
"email": null,
"userId": "1110580a82031111aaa03333"
}
],
"_count": {
"views": 0,
"domains": 1
},
"usage": [
{
"snap_document_size": "220637"
}
]
}
],
"_count": {
"projects": 4
},
"projectUsage": 4,
"domainsUsage": 4,
"clicksUsage": 43,
"shortLinksUsage": 2,
"qrCodeLinksUsage": 0,
"storageUsage": 244281,
"seatsUsage": 4,
"isPaid": true
}