Read Presence Feed
Reads the specified presence feed that was created using the Create Presence feed endpoint. The feed returned includes the user presence statuses that have changed since they were last read.
Starting with SBE 24.1, the API is deprecated
Returns the current presence status of company (pod) users if it has changed since the last read. Returns up to 500 records at a time.
Path parameters
feedIdstringRequired
Presence feed ID.
Header parameters
sessionTokenstringRequired
Session authentication token.
Responses
200
OK
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
get
GET /pod/v1/presence/feed/{feedId}/read HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
[
{
"category": "AVAILABLE",
"userId": 14568529068038,
"timestamp": 1533928483800
},
{
"category": "OFFLINE",
"userId": 974217539631,
"timestamp": 1503286226030
}
]
When calling this as an OBO-enabled endpoint, use the OBO User Authenticate token for sessionToken
.
Last updated
Was this helpful?