# Suscribers

## GET /v1/signals/{id}/subscribers

> Get the subscribers of a signal

```json
{"openapi":"3.0.1","info":{"title":"Agent API","version":"25.8.1"},"servers":[{"url":"youragentURL.symphony.com/agent"}],"paths":{"/v1/signals/{id}/subscribers":{"get":{"tags":["Signals"],"summary":"Get the subscribers of a signal","parameters":[{"name":"sessionToken","in":"header","description":"Session authentication token.","required":true,"schema":{"type":"string"}},{"name":"keyManagerToken","in":"header","description":"Key Manager authentication token.","schema":{"type":"string"}},{"name":"id","in":"path","description":"The id of the signal.","required":true,"schema":{"type":"string"}},{"name":"skip","in":"query","description":"No. of results to skip.","schema":{"type":"integer","default":0}},{"name":"limit","in":"query","description":"Max No. of subscribers to return. If no value is provided, 100 is the default.","schema":{"type":"integer","default":100}}],"responses":{"200":{"description":"Signal Subscribers.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChannelSubscriberResponse"}}}},"400":{"description":"Client error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"401":{"description":"Unauthorized: Session tokens invalid.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"403":{"description":"Forbidden: Caller lacks necessary entitlement.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}},"500":{"description":"Server error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/V2Error"}}}}}}}},"components":{"schemas":{"ChannelSubscriberResponse":{"type":"object","properties":{"offset":{"type":"integer","description":"The number of subscribers skipped","format":"int64"},"hasMore":{"type":"boolean","description":"True if there are more subscribers"},"total":{"type":"integer","description":"The total number of subscribers"},"data":{"type":"array","items":{"$ref":"#/components/schemas/ChannelSubscriber"}}}},"ChannelSubscriber":{"type":"object","properties":{"subscriptionId":{"type":"string"},"pushed":{"type":"boolean","description":"True if the subscriber is allowed to unsubscribe","default":false},"owner":{"type":"boolean","description":"True if the subscriber is the creator","default":false},"subscriberName":{"type":"string","description":"User display name"},"userId":{"type":"integer","description":"The user ID of the subscriber","format":"int64"},"timestamp":{"type":"integer","description":"Timestamp when the signal was subscribed, in milliseconds since Jan 1 1970","format":"int64"}}},"V2Error":{"required":["code","message"],"type":"object","properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"},"details":{"type":"object"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rest-api.symphony.com/main/signals/subscribers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
