URL: /presence
This method allows you to: set the date of last activity, set your own status description, check the date of last activity for a given login and download statuses for all contacts.
The method requires authorization using basic authentication. Please use the login and password.
To set the date of last activity, call the /presence method with parameters:
Parameter | Description | |
---|---|---|
m | parameter specifies the name of the method. When setting the date, set the "setLastActive" value | |
pm | JSON object containing
|
url --location --globoff --request POST 'https://xxxxxxxxxxx/emcd/presence?m=setLastActive&pm={"u": false}' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To set the status, call the /presence method with parameters:
Parameter | Description | |
---|---|---|
m | parameter specifies the name of the method. When setting the date, set the "setStatus" value | |
pm | JSON object containing status s, possible values: online, away, busy, snoozing, logged out Example
|
curl --location --globoff --request POST 'https://xxxxxxx/emcd/presence?m=setStatus&pm={"s": "away"}' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To retrieve the status, call the /presence method with the following parameters:
Parameter | Description |
---|---|
m | parameter specifies the name of the method. If you set the date, set the "getStatus" value |
--header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If successful, we will receive a JSON object:
{ "s": string } |
where:
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To set the text status, call the /presence method with the following parameters:
Parameter | Description | |
---|---|---|
m | parameter specifies the name of the method. When setting the date, set the value "setTextStatus" | |
pm | JSON object containing text status ts Example
|
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To retrieve the status text, call the /presence method with the following parameters:
Parameter | Description |
---|---|
m | parameter specifies the name of the method. If you set the date, you must set the "getTextStatus" value |
--header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If successful, we will receive a JSON object:
{ "ts": string } |
where:
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To check the date of last activity for the selected SIP login, call the /presence method with the following parameters:
Parameter | Description | |
---|---|---|
m | parameter specifies the name of the method. If setting the date, set the value to "getLastActive" | |
pm | JSON object containing SIP login l Example
|
curl --location --globoff --request POST 'https://xxxxxxxx/emcd/presence?m=getLastActive&pm={ "l": "piotr" }' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If successful, we will receive a JSON object containing the current status of s (may contain the values: online, offline or unknown) and the date and time (UTC) of the last ls activity in the format yyyy-MM-ddTHH:mm:ss. In case of online or unknown status, the ls value is empty. Example:
{ "s": "offline", "ls": "2015-01-14T10:44:00" } |
To calculate the time difference between the ls date and the current server date, you should take into consideration the Date response header in which the current server date is given. Additionally, the dialer should include the Expires response header, which informs the dialer how long this response is valid.
If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:
Kod | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To download the "text status" and information about your contacts' avatars, call the /presence method with the following parameters:
Parameter | Description |
---|---|
m | parameter specifies the name of the method.
|
Additionally, this method supports the If-Modified-Since header. When sending If-Modified-Since, we tell the server to send the document only if it has been modified since a given date. If the document has not changed, the server should send the browser the response code 304 - HTTP STATUS: 304 Not Modified. We receive the modification date with each response (HTTP STATUS: 200 OK) in the Last-modified header. Before sending another query, the dialer should include the Expires response header, which informs the dialer how long this response is valid.
--header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If successful (HTTP STATUS: 200 OK), we will receive an array of JSON objects in the body containing:
id - contact id from local(device) address book
av - information about the existence of the avatar: 0 - the file does not exist, 1 file exists,
Example:
[ { "id" : ulong, "l" : string, "s" : string, "av" : string, "avdt": string, "pv" : string, "pvdt": string, "ts" : string, "tsdt": string } ] |
If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To save the settings, call the /presence method with parameters:
Parameter | Description | |
---|---|---|
m | parameter specifies the name of the method. When setting set use "setSettings" value | |
pm | obiekt JSON
where:
|
curl --location --globoff --request POST 'https://xxxxxxx/emcd/presence?m=setSettings&pm={"ss":"everyone","sts":"everyone","sls":"contacts","sav":"contacts","sai":"contacts" }' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
To read the settings, call the /presence method with parameters:
Parameter | Description |
---|---|
m | parameter specifies the name of the method. If you set the date, set the "getSettings" value |
--header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
If successful (HTTP STATUS: 200 OK), we will receive an array of JSON objects in the body containing: