Trying to fetch queue details via the Node.js SDK but keep getting a 403 Forbidden. The token clearly has routing:queue:read in the scope list, yet the API rejects the request. Here’s the snippet:
const result = await platformClient.routing.queues.getQueues({
pageSize: 250
});
Is there a hidden division scope requirement I’m missing?