Skip to main content

Customer endpoints

info

these are endpoints that dont fit into the other catagories

Getting tiers

GET /data/tiers

Response

{
"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

NameTypeDescription
tierNumberThe id of the tier to get

Response

{
"success": true,
"tier": {
"id": 0,
"name": "NAME",
"max_users": 0,
"max_projects": 0,
"max_scripts": 0,
"free_for_all": 0,
"obfuscations": 0,
"price": 0
}
}