Suscribers

Gets the subscribers for the specified signal.

Get the subscribers of a signal

get
Path parameters
idstringRequired

The id of the signal.

Query parameters
skipintegerOptional

No. of results to skip.

Default: 0
limitintegerOptional

Max No. of subscribers to return. If no value is provided, 100 is the default.

Default: 100
Header parameters
sessionTokenstringRequired

Session authentication token.

keyManagerTokenstringOptional

Key Manager authentication token.

Responses
200
Signal Subscribers.
application/json
get
GET /agent/v1/signals/{id}/subscribers HTTP/1.1
Host: youragentURL.symphony.com
sessionToken: text
Accept: */*
{
  "offset": 1,
  "hasMore": true,
  "total": 1,
  "data": [
    {
      "subscriptionId": "text",
      "pushed": false,
      "owner": false,
      "subscriberName": "text",
      "userId": 1,
      "timestamp": 1
    }
  ]
}

Last updated

Was this helpful?