TuCloudAPI gettask
Appearance
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
Get one scheduled task and its ordered steps. 404-style {ok:false,not_found} if the task is not in the caller's PBX.
Call
GET https://tucloudapi.7kas.com:9087/tucloud?func=gettask&ukey=YOUR_KEY&pbx=PBX_NAME
Requires the ukey parameter. Always HTTP 200; response is a JSON envelope.
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. |
id |
integer | Yes | — | Task id (_id). |
Example
https://tucloudapi.7kas.com:9087/tucloud?func=gettask&ukey=KEY&pbx=tucall&id=224
Response
{ok, task:TASK, steps:[STEP...]}. STEP={_id,step_order,app_id,record_id,action_id,data,app_label,action_label,action_type,record_label,value_label}.
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