Server SDKs
Build AI agents, control calls, send messages, and more
List number groups in the project.
<=255 characters
0
1-1000
50
1{2 "links": {3 "self": "string",4 "first": "string",5 "next": "string",6 "prev": "string"7 },8 "data": [9 {10 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",11 "name": "My Number Group",12 "sticky_sender": false,13 "phone_number_count": 414 }15 ]16}
1from signalwire.rest import RestClient23client = RestClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7)89result = client.number_groups.list()10for group in result.get("data", []):11 print(group["name"], group.get("id"))