Using your code suggestion from your API reference on how to list call queues
https://developers.ringcentral.com/api-reference/Call-Queues/listCallQueues
I have written the below to try to return a list of Call Queues. Unfortunately, it lists Call Queues AND all extensions. Can you help me with this? I don't understand why its reporting on all extensions when it is supposed to be referencing the call-queues rest API
r = platform.get('/restapi/v1.0/account/~/call-queues')
jsonR = resp.json()
for record in jsonR.records:
print(f'|Extension: {record.extensionNumber}', end="")
print(f'| Name: {record.name}')