Customer endpoints
info
these are endpoints that dont fit into the other catagories
Getting tiers
GET
/data/tiers
Response
- Success
{
"success": true,
"tiers": [{
"id": 0,
"name": "NAME",
"max_users": 0,
"max_projects": 0,
"max_scripts": 0,
"free_for_all": 0,
"obfuscations": 0,
"price": 0
}]
}
Getting a tier
GET
/data/tiers/:tier
Parameters
| Name | Type | Description |
|---|---|---|
| tier | Number | The id of the tier to get |
Response
- Success
{
"success": true,
"tier": {
"id": 0,
"name": "NAME",
"max_users": 0,
"max_projects": 0,
"max_scripts": 0,
"free_for_all": 0,
"obfuscations": 0,
"price": 0
}
}