Unsubscribe Signal
Unsubscribes an array of users from the specified Signal.
The id of the signal.
Session authentication token.
Key Manager authentication token.
Signal unsubscribed.
The number of requested userIds to subscribe
The number of successful subscriptions done
The number of subscription failures
Client error, see response body for further details.
Unauthorized: Session tokens invalid.
Forbidden: Caller lacks necessary entitlement.
Server error, see response body for further details.
POST /agent/v1/signals/{id}/unsubscribe HTTP/1.1
Host: youragentURL.symphony.com
sessionToken: text
Content-Type: application/json
Accept: */*
Content-Length: 3
[
1
]{
"requestedSubscription": 1,
"successfulSubscription": 1,
"failedSubscription": 1,
"subscriptionErrors": [
{
"userId": 1,
"code": "text",
"message": "text"
}
]
}🚧 Permissions
To unsubscribe from a signal, the requesting user cannot be the owner of the signal.
To unsubscribe other users from a signal, the requesting user needs to have the
canManageSignalSubscriptionentitlement and the signal cannot be a company-wide signal.
Last updated
Was this helpful?