403 on /api/v2/routing/queues despite having routing:queue:read

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?