Create Datafeed

Creates a new real time messages / events stream ("datafeed"). The datafeed provides messages and events from all conversations that the user is in. The types of events surfaced in the datafeed can be found in the Real Time Events list.

Returns the ID of the datafeed that has just been created. This ID should then be used as input to the Read Datafeed endpoint.

Create a new real time messages / events stream ("datafeed").

post

Available on Agent 2.57.0 and above.

The datafeed provides messages and events from all conversations that the user is in. The types of events surfaced in the datafeed can be found in the Real Time Events list. (see definition on top of the file)

Returns the ID of the datafeed that has just been created. This ID should then be used as input to the Read Messages/Events Stream v4 endpoint.

Header parameters
sessionTokenstringRequired

Session authentication token.

keyManagerTokenstringRequired

Key Manager authentication token.

Body
tagstring · max: 100Optional

A unique identifier to ensure uniqueness of the datafeed.

Responses
201
Datafeed sucessfully created.
application/json
post
POST /agent/v5/datafeeds HTTP/1.1
Host: youragentURL.symphony.com
sessionToken: text
keyManagerToken: text
Content-Type: application/json
Accept: */*
Content-Length: 14

{
  "tag": "text"
}
{
  "id": "371f465fb97b5d1027d20a5e7085863a_f",
  "type": "fanout"
}

Last updated

Was this helpful?