Metoda dostępna pod adresem: /ch.ashx .
This method allows you to download the history of conversations and messages for a given user. This method contains two parameters: cm and pm. The cm parameter describes the name of the method, while the pm parameter describes the parameters of a given method. The following methods are available within conversation history: setRead, setDownloaded, delRecord, getList.
The method requires authorization using basic authentication. Please use your SIP account login and password.
Each record in the history has a field called "new" with values 0 or 1. All new records are set to "new" = 1. To change the status of a given message or group of messages to 0, i.e. read, you need to call the ch.ashx method with the parameters:
Parameter | Description |
---|---|
cm | parameter specifies the name of the method. If the status changes, set the "setRead" value |
pm | a JSON object containing an array of identifiers which messages should have their status changed to read. Example {"id":[1000685,1192075]} where 1000685 and 1192075 are the record IDs |
[ { "id": 1405573, "new": 1, "rs": "1000225", "dn": "48130313058", "s": "v", "sn": "on", "sb": "in", "dts": "2014-02-21T09:46:14", "dte": "", "mid": "", "mb": "", "cd": 0 }, { "id": 1174223, "new": 1, "rs": "1317111", "dn": "vippie ID", "s": "m", "sn": "on", "sb": "out", "dts": "2014-03-05T14:24:34", "dte": "2014-03-05T14:24:35", "mid": "35635", "mb": "Message content", "cd": 0 }, .... ] |
where:
id - identifier of a given message in the conversation history
new - message status: 1 - unread, 0 - read
rs - resource - in the case of source onnet it is the sip login, in the case of offnet it is the caller ID of the caller.
dn - display name
s - source, available values: c - call, f - call failed, m - message, v - voicemail, s - SIPLINK_COMMAND
sn - source network, available values: on -> on-net or off -> off-net
sb - source box, available values: in or out
sdt - event date - in the case of calls, this is the date the call ended.
mid - message id - message ID sent by dialer in the sip message body
mb - message body -Message content
ms - message status - available values s - sent, d - delivered, r - read, c - deleted
cd - call duration - connection length in seconds.
To download the history, call the ch.ashx method with the cm=getList parameter and additionally set the If-Modified-Since and Range headers.
Example - retrieving records without specifying If-Modified-Since and Range:
Request body cm=getList |
Content-Range: records 0-99/5124 Last-Modified: Tue, 21 Nov 2014 12:45:26 GMT Response body [ { "id": 1405573, "new": 1, "rs": "1000225", "dn": "48130313058", "s": "v", "sn": "on", "sb": "in", "dts": "2014-02-21T09:46:14", "dte": "", "mid": "", "mb": "", "cd": 0 }, { "id": 1174223, "new": 1, "rs": "1317111", "dn": "vippie ID", "s": "m", "sn": "on", "sb": "out", "dts": "2014-03-05T14:24:34", "dte": "2014-03-05T14:24:35", "mid": "35635", "mb": "tre?? wiadomo?ci", "cd": 0 }, .... ] |
POST /history | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DescriptionDownload the conversation list. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Responses
|
To retrieve information about a given message, you need to call the /history method with the following parameters:
Parameter | Description | |
---|---|---|
cm | parameter specifies the name of the method. If a message is deleted, set the "getMessageInfo" value | |
pm | a JSON object containing an array of identifiers of what messages are to be deleted. Example
where mid is the identifier of the message sent by the dialer and rs - resource - is the sip login |
{ "st": "2014-03-17T18:08:20", "cf": "2014-03-17T18:08:20", "rd": "2014-03-17T18:08:20" } |
To set the label, you need to call the /history method with parameters:
Parameter | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cm | parameter specifies the name of the method. You must set the "setLabel" value | |||||||||||||||
pm | a JSON object containing information about what labels should be set for individual records. Example:
where:
Example 1: To set the archived label for the entire groupchat with ID = 567, you need to create an object
Example 2 To set the archived label for selected groupchat messages with ID = 567, you must create an object
How to calculate the value for label. Each label has a fixed value, which is a power of 2. A value of 0 means no labels.
If, for example, we want to set the deleted (id=1) and archived (id=3) labels for selected records, we calculate it as follows: 2^1 + 2^3 = 2 + 8 = 10 |
In response we will receive:
{ "nra": 12 } |
To delete the list of messages, you need to call the ch.ashx method with the following parameters:
Parameter | Description |
---|---|
cm | parameter specifies the name of the method. If a message is deleted, set the "delRecord" value |
pm | a JSON object containing an array of identifiers of what messages are to be deleted. Example {"id":[1000685,1192075]} where 1000685 and 1192075 are the message IDs |
After successfully downloading the file, set the attachment status to correct. Calling the function removes the file identifier from the message body. Example:
~[ATT RID:'1999999' type:'0' ext:'jpg'] |
~[ATT RID:'' type:'0' ext:'jpg'] |
To set the attachment status, you need to call the ch.ashx method with the following parameters:
Parameter | Description |
---|---|
cm | parameter specifies the name of the method. If the status changes, set the "setDownloaded" value |
pm | a JSON object containing the ID of the message with the attachment. Example {"id":1000685} where 1000685 are the message IDs |