Presence

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.

Authorization

The method requires authorization using basic authentication. Please use the login and password.


Opis metod:

Setting the date of last activity

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

{"u":false}
{"u":true}



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'


Return value

Set status

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

{ "s": "online" }



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'


Return value

Code

Description

400

Incorrect parameters - one of the parameters was not provided

Retrieve status

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


curl --location --request POST 'https://xxxxxxxxx/emcd/presence?m=getStatus' \
--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'


Return value

{
    "s": "away"
}

Return value

Code

Description

400

Incorrect parameters - one of the parameters was not provided

Set text status

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

{ "ts": "Text status" }


Return value

Code

Description

400

Incorrect parameters - one of the parameters was not provided

Retrieve text status

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


curl --location --request POST 'https://xxxxxxxxx/emcd/presence?m=getTextStatus' \
--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'


Return value

Code

Description

400

Incorrect parameters - one of the parameters was not provided

Checking the date of last activity for the specific login(account)

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

{ "l": "sip login" }



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'


Return value

Retrieve text status and avatar information for all contacts

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.

  • "getBuddyStatus" method - retrieves the buddy list for the address book
  • "getCompanyBuddyStatus" method - retrieves the PBX buddy list

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.


curl --location --request POST 'https://xxxxxxxx/emcd/presence?m=getBuddyStatus' \
--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'


Return value

Example:

[
  { 
    "id"  : ulong, 
    "l"   : string,
    "s"   : string,
    "av"  : string, 
    "avdt": string,
    "pv"  : string,
    "pvdt": string, 
    "ts"  : string, 
    "tsdt": string
  }
]


Saving settings

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

{
 "ss" : string,
 "sts": string,
 "sls": string,
 "sav": string,
 "sai": string
}

where:

  • ss - show status - possible values: everyone, contacts, nobody
  • sts - show text status - possible values: everyone, contacts, nobody
  • sls - show last seen - possible values: everyone, contacts, nobody
  • sav - show avatar video - possible values: everyone, contacts, nobody
  • sai - show avatar image -possible values: everyone, contacts, nobody


--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'



Return value

Code

Description

400

Incorrect parameters - one of the parameters was not provided

Retrieve settings

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


curl --location --request POST 'https://xxxxxxxxxx/emcd/presence?m=getSettings' \
--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'


Return value

{
    "ss": "everyone",
    "sts": "everyone",
    "sls": "contacts",
    "sav": "contacts",
    "sai": "contacts"
}

Return value

If successful (HTTP STATUS: 200 OK), we will receive an array of JSON objects in the body containing: