JSON API » peers » peers/costs/list

Gets the fields of costs in a given peer.

Input parameters

Requires authentication and the system owner role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
peerIntegerID of peer to get costs for.Yes
called_prefixStringOnly return costs with called prefix starting with this string. Empty string for all.NoEmpty string.
countInteger1 to return a count, 0 to return full data.No0
descendingInteger1 to sort descending, 0 not to.No0
limitIntegerThe maximum results to return. 0 for all.No0
mediaStringOnly return costs with this media. "fax", "voice", "voice_fax", or empty string for all.NoEmpty string.
offsetIntegerThe result to start at. 0 for the first.No0
pagesInteger1 to return a reduced set of data for generating the pages select box, 0 to return full data.No0
prefixStringOnly return costs with prefix starting with this. Empty string for all.NoEmpty string.
sortStringField to sort by. "allow", "media", or "prefix".No"prefix"

Responses

CodeDescription
200Success.
400Invalid input parameters specified. Check the key and message fields for more details.
401The authentication details provided are invalid.
402Your role does not allow this.
404The peer does not exist.

Data returned

An array of fields, corresponding to the rows of the peer_costs table in the database.

Example: With required parameters

http://enswitch.example.com/api/json/peers/costs/list/?auth_username=user;auth_password=password;peer=123

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":[ { "id":1, "peer":123, "called_prefix":"", ... }, { "id":2, "peer":123, "called_prefix":"011", ... } ] }

Change history

VersionChanges
3.15Function added.