Create Presence Feed

Creates a new stream capturing online status changes ("presence feed") for the company (pod) and returns the ID of the new feed. The feed will return the presence of users whose presence status has changed since it was last read.

Starting with SBE 24.1, the API is deprecated

Create Presence status feed.

Create a new stream capturing presence status changes ("presence feed"). When read from, the feed will return the current presence status of company (pod) users if it has changed since the last read.

Returns the ID of the presence feed to be used in subsequent read operations.

POSTyourpodURL.symphony.com/pod/v1/presence/feed/create
Header parameters
Response

OK

Body
idstring
Example: "xhGxbTcvTDK6EIMMrwdOrX___quztr2HdA"
Request
const response = await fetch('yourpodURL.symphony.com/pod/v1/presence/feed/create', {
    method: 'POST',
    headers: {
      "sessionToken": "text"
    },
});
const data = await response.json();
Response
{
  "id": "xhGxbTcvTDK6EIMMrwdOrX___quztr2HdA"
}

When calling this as an OBO-enabled endpoint, use the OBO User Authenticate token for sessionToken.

Last updated