Suscribers
Gets the subscribers for the specified signal.
Path parameters
idstringRequired
The id of the signal.
Query parameters
skipintegerOptionalDefault:
No. of results to skip.
0
limitintegerOptionalDefault:
Max No. of subscribers to return. If no value is provided, 100 is the default.
100
Header parameters
sessionTokenstringRequired
Session authentication token.
keyManagerTokenstringOptional
Key Manager authentication token.
Responses
200
Signal Subscribers.
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Session tokens invalid.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
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?