TuCloudAPI updatecli: Difference between revisions
Appearance
API docs (generated from func=help) — add #48 adminusers + #52 pbxconfig |
TuCloudAPI reference: pbx param help -> FuturePBX (API surface unchanged) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
''TuCloudAPI function to manage | ''TuCloudAPI function to manage FuturePBX (the cloud PBX). Available to: '''SuperRoot, Operator, Client'''.'' | ||
== Description == | == Description == | ||
| Line 12: | Line 12: | ||
! Parameter !! Type !! Required !! Default !! Meaning | ! Parameter !! Type !! Required !! Default !! Meaning | ||
|- | |- | ||
| <code>pbx</code> || string || Yes || — || | | <code>pbx</code> || string || Yes || — || FuturePBX NAME (e.g. tucall). The (ukey, pbx) pair is the tenant boundary; the server verifies the ukey owns this PBX. | ||
|- | |- | ||
| <code>id</code> || integer || Yes || — || CLI id (_id). | | <code>id</code> || integer || Yes || — || CLI id (_id). | ||
Latest revision as of 14:31, 3 August 2026
TuCloudAPI function to manage FuturePBX (the cloud PBX). Available to: SuperRoot, Operator, Client.
Description
Edit a CLI. cli is read-only (ignored if sent — renaming would de-sync the SIP/voip_clis peer). Server-owned root/pais_id/cpostal_id are preserved. Same validation as addcli. Full-form save: send every timer field (blank clears it). 404 if not in the caller's PBX. Requires a non-readonly ukey.
Call
GET https://tucloudapi.7kas.com:9087/tucloud?func=updatecli&ukey=YOUR_KEY
Requires the ukey parameter.
Parameters
| Parameter | Type | Required | Default | Meaning |
|---|---|---|---|---|
pbx |
string | Yes | — | FuturePBX NAME (e.g. tucall). The (ukey, pbx) pair is the tenant boundary; the server verifies the ukey owns this PBX. |
id |
integer | Yes | — | CLI id (_id). |
nota |
string | No | — | Company/description (max 64). |
cliid |
integer | No | 0 |
Line-code identifier 0-999. |
recincalls |
integer | No | 0 |
1 = record inbound calls. |
template_c |
integer | No | 0 |
Calendar template 0-99. |
template_h |
integer | No | 0 |
Schedule profile id; 0 = none. |
defaultroute |
integer | No | 0 |
Default route id (0 = none). |
timerstatic |
integer | No | 0 |
Forced/static route id (0 = none). |
timerstatic_ee |
integer | No | 0 |
Static-route inbound-routing flag 0/1. |
forcetimer |
integer | No | 0 |
Forced timer slot 0-12. |
forcetimer_ee |
integer | No | 0 |
Forced-timer inbound-routing flag 0/1. |
nota2 |
string | No | — | Free note (max 32767). |
timers |
string | No | {} |
JSON object string of the weekday x slot route matrix: keys timer{a..l} and {monday..sunday}_timer{a..l} hold a route _id (blank/0 = none), and each paired ..._ee key is 0/1. Route ids are validated to this PBX. Sent by the portal as a POST body field. |
Example
https://tucloudapi.7kas.com:9087/tucloud?func=updatecli&ukey=KEY&pbx=tucall&id=83513¬a=Empresa
Response
{ok, cli:{...}}.
Back to TuCloudAPI