Jump to content

TuCloudAPI getpbxs

From Wiki 7Kas
Revision as of 16:33, 1 August 2026 by Maintenance script (talk | contribs) (TuCloudAPI reference (generated from func=help))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

TuCloudAPI function to manage tucloud (PBX) services. Available to: SuperRoot, Operator, Client.

Requires the 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 the calling ukey may manage (post-login selector; show only if >1). Takes ukey ONLY (no pbx). SuperRoot=all; operator=its root; client=its account. Use the returned "pbx" value as the pbx= param on every other call.

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