GET {{baseUrl}}/phone/shared_line_groups?page_size=30&next_page_token=<string>
Lists all the shared line groups. A shared line group allows Zoom Phone admins to share a phone number and extension with a group of phone users or common areas. This capability gives members of the shared line group access to the group's direct phone number and voicemail. Prerequisites: Scopes: Granular Scopes: Rate Limit Label:
phone:read:admin
phone:read:list_shared_line_groups:admin
Medium
Body
PARAM
Key | Datatype | Required | Description |
page_size
|
number | The number of records returned within a single API call. | |
next_page_token
|
string | The next page token paginates through a large set of results. A next page token is returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"next_page_token": "<string>",
"page_size": 30,
"shared_line_groups": [
{
"display_name": "<string>",
"extension_id": "<string>",
"extension_number": "<long>",
"id": "<string>",
"phone_numbers": [
{
"id": "<string>",
"number": "<string>",
"status": "available"
},
{
"id": "<string>",
"number": "<string>",
"status": "available"
}
],
"site": {
"id": "<string>",
"name": "<string>"
},
"status": "inactive"
},
{
"display_name": "<string>",
"extension_id": "<string>",
"extension_number": "<long>",
"id": "<string>",
"phone_numbers": [
{
"id": "<string>",
"number": "<string>",
"status": "pending"
},
{
"id": "<string>",
"number": "<string>",
"status": "pending"
}
],
"site": {
"id": "<string>",
"name": "<string>"
},
"status": "active"
}
],
"total_records": "<integer>"
} |
ENDPOINTS