Jump to content

TuCloudAPI getaudio

From Wiki 7Kas
Revision as of 19:06, 1 August 2026 by Maintenance script (talk | contribs) (+ getaudio)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Description

Serve a locution or music-on-hold audio file for preview, base64-encoded (audio/wav). Read-only and strictly tenant-scoped: pass pbx + kind + the entity id; the server resolves the row IN THIS PBX and builds the path from the tenant's OWN root+pbxid — client-supplied paths are never accepted, so a ukey can only read its own PBX's audio.

Call

GET  https://tucloudapi.7kas.com:9087/tucloud?func=getaudio&ukey=YOUR_KEY

Requires the ukey parameter.

Parameters

Parameter Type Required Default Meaning
pbx string Yes TuCloud PBX NAME (e.g. tucall). The (ukey, pbx) pair is the tenant boundary; the server verifies the ukey owns this PBX.
kind string Yes music.
id integer Yes Locution _id (kind=locution) or music _id (kind=music), from the simulatecall audio descriptor / getappactions.

Example

https://tucloudapi.7kas.com:9087/tucloud?func=getaudio&ukey=KEY&pbx=tucall&kind=locution&id=1239

Response

{ok:true, mime:"audio/wav", name, data:<base64>}. Play as a data: URL. Errors: {ok:false,code,message} (missing_pbx|unknown_pbx|forbidden|invalid_param|not_found|db_error).


Back to TuCloudAPI