Notification API WebSocket subscription returning 403

Hitting a 403 when trying to subscribe to conversation events via the Notification API WebSocket. The bearer token works fine for REST calls, but the wss://notify-eu.genesiscloud.com/v2/notifications endpoint rejects the connection immediately. Here’s the subscription payload I’m sending in the init message:

{
 "type": "SUBSCRIBE",
 "resourceType": "conversation",
 "resourceId": "all"
}

Is there a specific scope missing from the OAuth token for WebSocket access?

The docs state: “The token must include the notification:subscribe scope.” Your token likely doesn’t have it. In the .NET SDK, you need to explicitly add it during auth:

var client = PlatformClientFactory.Create();
await client.AuthClient.AuthorizeAsync("client_id", "secret", new[] { "notification:subscribe" });

Without that scope, the WebSocket handshake fails with 403.