Category: API
Summary: A new query parameter was added to GET /api/v2/notifications/channels to enable listing channels created by other auth tokens using the same user/client combination.
To use this feature, use the query string parameter includechannels
with a value of oauthclient
(e.g. GET /api/v2/notifications/channels?includechannels=oauthclient
. The response will include channels created by the requesting auth token as well as by other auth tokens using the same OAuth client ID and logged in by the same user. For client credentials, the user is considered the client ID. Results created by the requesting auth token will have the connectUri
specified and the channel ID will be shown. For other results, the channel ID will be obfuscated and the connectUri will not be provided.
If the includechannels
query parameter is not used, it will default to token
, which maintains previous behavior.
Impact: Backwards compatible new feature
Date of Change: 5/26/2018
Related Issue: API-3342