JSON API » calls » calls/active/list/panel

This is a lightweight version of calls/active/list that requires fewer database lookups and returns less data. calls/active/list should normally be used instead.

Input parameters

Requires authentication and the panel role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
customerIntegerID of customer to get calls for.NoCustomer of authentication user.

Responses

CodeDescription
200Success.
400Invalid customer specified.
401The authentication details provided are invalid.
402Your role does not allow this.

Data returned

An array of fields, one row for each call leg.

Example: With required parameters

http://enswitch.example.com/api/json/calls/active/list/panel/?auth_username=user;auth_password=password

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":[ { "uniqueid":"1234567890.123456", "start":1234567890, ... }, { "uniqueid":"1234567890.123457", "start":1234567890, ... } ] }

Change history

VersionChanges
3.13Function added.