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

Trying to pull queue stats via a quick python script. The token has :queue:view and :queue:edit. Calling GET /api/v2//queues returns 403. Token works fine for getting user details. Checked the scope list three times. Here is the request dump:

GET /api/v2//queues?divisionId=xyz HTTP/1.1
Authorization: Bearer eyJhbGci...
Accept: application/json

HTTP/1.1 403 Forbidden
{
 "message": "Forbidden",
 "errors": [
 "You do not have permission to perform this action"
 ]
}

Docs say view scope is enough. Maybe it’s a division mismatch or I’m missing a hidden scope. What am I missing?