JSON API » subscriptions » subscriptions/list
Gets the fields of all subscriptions for a telephone line.
Input parameters
Requires authentication and the administrator role privilege.
Name | Type | Description | Required | Default value |
---|---|---|---|---|
auth_username | String | Authentication username. | Yes | |
auth_password | String | Authentication password. | Yes | |
snumber | String | Subscribing telephone line. | Yes | |
dtype | String | Monitored destination type. Empty string for all. | No | "phone" |
event | String | Subscription event package name. Empty string for all. | No | "busy" |
Responses
Code | Description |
---|---|
200 | Success. |
401 | The authentication details provided are invalid. |
402 | Your role does not allow this. |
404 | The telephone line does not exist, or you do not have permission to view it. |
Data returned
An array of fields, corresponding to the rows of the subscriptions table in the database.
Example: With required parameters
http://enswitch.example.com/api/json/subscriptions/list/?auth_username=user;auth_password=password;stype=phone;snumber=1234567{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":[ { "id":1, "snumber":"1234567", ... }, { "id":2, "snumber":"1234567", ... } ] }
Change history
Version | Changes |
---|---|
3.13 | Function added. |