Jump to content

TuCloudAPI getcdr: Difference between revisions

From Wiki 7Kas
TuCloudAPI reference: product name -> FuturePBX (API surface unchanged); regenerated from func=help
TuCloudAPI reference: pbx param help -> FuturePBX (API surface unchanged)
 
Line 12: Line 12:
! Parameter !! Type !! Required !! Default !! Meaning
! Parameter !! Type !! Required !! Default !! Meaning
|-
|-
| <code>pbx</code> || string || Yes || — || TuCloud PBX NAME (e.g. tucall). The (ukey, pbx) pair is the tenant boundary; the server resolves this PBX's accountcode and reads only its own CDR via the restapi.
| <code>pbx</code> || string || Yes || — || FuturePBX NAME (e.g. tucall). The (ukey, pbx) pair is the tenant boundary; the server resolves this PBX's accountcode and reads only its own CDR via the restapi.
|-
|-
| <code>year</code> || integer || Yes || — || Year (e.g. 2026).
| <code>year</code> || integer || Yes || — || Year (e.g. 2026).

Latest revision as of 14:31, 3 August 2026

TuCloudAPI function to manage FuturePBX (the cloud PBX). Available to: SuperRoot, Operator, Client.

Description

List a period of this PBX's call detail records (Registro de llamadas), newest first. CDR is read from the 7kas restapi getcdr endpoint (server-to-server); tucloudapi adds the tucloud-pbx account filter. Metadata-only (no prices). Paginate with offset += limit until has_more is false. READ-ONLY.

Call

GET  https://tucloudapi.7kas.com:9087/tucloud?func=getcdr&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 resolves this PBX's accountcode and reads only its own CDR via the restapi.
year integer Yes Year (e.g. 2026).
month integer Yes Month 1-12.
day integer No Optional day 1-31 (blank = whole month).
limit integer No 1000 Page size (1-1000).
offset integer No 0 Pagination offset (advance by limit).

Example

https://tucloudapi.7kas.com:9087/tucloud?func=getcdr&ukey=KEY&pbx=tucall&year=2026&month=7

Response

{ok, rows:[{calldate,clid,clisrc,clidst,src,dst,billsec,lastapp,disposition,callfrom}], record_count, has_more}. callfrom = the engine call-direction bitmask (int): bit0=1 inbound-entrance, bit1=2 outbound-dial -> 0 Interna / 1 Entrante / 2 Saliente / 3 Entrante+Saliente (tránsito).


Back to TuCloudAPI