TuCloudAPI getpbxs: Difference between revisions
TuCloudAPI reference (generated from func=help) |
getpbxs: account-scoped selector (all roles) |
||
| Line 4: | Line 4: | ||
== Description == | == Description == | ||
List the PBXs the calling ukey | List the PBXs assigned to the calling ukey's account (post-login selector; show only if >1). Takes ukey ONLY (no pbx). For EVERY role — SuperRoot, operator and client — it returns only the tucloud PBXs whose accountcode is associated with the ukey (never every tenant under a root). Use the returned "pbx" value as the pbx= param on other calls. | ||
== Call == | == Call == | ||
Revision as of 18:48, 1 August 2026
TuCloudAPI function to manage tucloud (PBX) services. Available to: SuperRoot, Operator, Client.
pbx parameter (the PBX name, e.g. tucall). The server verifies your ukey owns that PBX; otherwise it returns {"ok":false,"code":"forbidden"}.Description
List the PBXs assigned to the calling ukey's account (post-login selector; show only if >1). Takes ukey ONLY (no pbx). For EVERY role — SuperRoot, operator and client — it returns only the tucloud PBXs whose accountcode is associated with the ukey (never every tenant under a root). Use the returned "pbx" value as the pbx= param on other calls.
Call
GET https://tucloudapi.7kas.com:9087/tucloud?func=getpbxs&ukey=YOUR_KEY
Requires the ukey parameter. Always HTTP 200; response is a JSON envelope.
Parameters
None beyond ukey and func=getpbxs.
Example
https://tucloudapi.7kas.com:9087/tucloud?func=getpbxs&ukey=KEY
Response
{ok, pbxs:[{_id,pbx,label,domain}]}. Send pbx=<pbx> on subsequent calls.
Errors
Always HTTP 200. On failure the body is {"ok":false,"code":"...","message":"..."}. Codes: missing_pbx, unknown_pbx, forbidden, invalid_param, not_found, db_error, server_busy.
Back to TuCloudAPI