Callables
This request returns a list of (addressables) objects that can be called. The list is ordered on objects access time. The most recent accessed object is returned first.
Resource
GET /callables[?parameters]
Parameters
Name | Type | Description |
---|---|---|
|
String |
Select objects that match this string. |
|
Integer |
The maximum number of objects to return. Default: 15. |
Payload
None
Response
Context
Authorization |
User |
Errors
Example
Request
GET https://xelion.nl/api/v1/master/callables?name=wim&limit=3
{
"data": [
{
"object": {
"commonName": "Wim Bokkers",
"addressable": {
"iconId": "215560684",
"commonName": "Wim Bokkers",
"oid": "182356255",
"objectType": "Person"
},
"organisation": {
"name": "Xelion B.V.",
"commonName": "Xelion B.V.",
"oid": "101755",
"objectType": "Organisation"
},
"presenceInfo": {
"status": "appointment",
"statusIcon": "",
"message": "Wallboarding is the new black",
"busy": true,
"location": ""
},
"isUser": true
},
"links": [
{
"rel": "self",
"href": "http://sip.xelion.nl/api/v1/master/addressables/182356255",
"method": "GET"
}
]
},
{
"object": {
"commonName": "Wim van Arnon",
"addressable": {
"iconId": "181581505",
"commonName": "Wim van Arnon",
"oid": "120527",
"objectType": "Person"
},
"organisation": {
"name": "Xelion B.V.",
"commonName": "Xelion B.V.",
"oid": "101755",
"objectType": "Organisation"
},
"presenceInfo": {
"status": "online",
"statusIcon": "",
"message": "Documenting ..",
"busy": false,
"location": "Xelion"
},
"isUser": true
},
"links": [
{
"rel": "self",
"href": "http://sip.xelion.nl/api/v1/master/addressables/120527",
"method": "GET"
}
]
},
{
"object": {
"commonName": "Sergey Wimmovic",
"addressable": {
"iconId": "182322621",
"commonName": "Sergey Wimmovic",
"oid": "5347109",
"objectType": "Person"
},
"isUser": false
},
"links": [
{
"rel": "self",
"href": "http://sip.xelion.nl/api/v1/master/addressables/5347109",
"method": "GET"
}
]
}
],
"meta": {
"paging": {
"refresh": {
"rel": "refresh",
"href": "http://sip.xelion.nl/api/v1/master/callables",
"method": "GET"
}
}
}
}