pub struct CommonAreaPhones {
    pub client: Client,
}

Fields

client: Client

Implementations

List common area phones.

This function performs a GET to the /phone/common_area_phones endpoint.

Use this API to list all of an account’s common area phones.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.

Scopes: phone:read:admin
Rate Limit Label: Medium

Prerequisites:

  • Pro or a higher account with Zoom Phone license.
  • Account owner or admin permissions.
  • A supported device

Parameters:

  • page_size: i64 – The total number of records returned from a single API call.
  • next_page_token: &str – The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.

List common area phones.

This function performs a GET to the /phone/common_area_phones endpoint.

As opposed to list, this function returns all the pages of the request at once.

Use this API to list all of an account’s common area phones.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.

Scopes: phone:read:admin
Rate Limit Label: Medium

Prerequisites:

  • Pro or a higher account with Zoom Phone license.
  • Account owner or admin permissions.
  • A supported device

Add a common area phone.

This function performs a POST to the /phone/common_area_phones endpoint.

Use this API to add a common area phone.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.

Scopes: phone:write:admin
Rate Limit Label: Light

Prerequisites:

  • Pro or a higher account with Zoom Phone license
  • Account owner or admin permissions
  • A supported device

Get common area phone details.

This function performs a GET to the /phone/common_area_phones/{commonAreaPhoneId} endpoint.

Use this API to get details on a specific common area phone in an account.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.

Scopes: phone:read:admin
Rate Limit Label: Light

Prerequisites:

  • Pro or a higher account with Zoom Phone license
  • Account owner or admin permissions
  • A supported device

Parameters:

  • common_area_phone_id: &str – Unique Identifier of the Common Area Phone. Use the unique identifier or the Mac address of the common area phone. The Mac address can be in hyphenated (00-04-f2-5e-ec-3c) or not hyphenated (0004f25eec3c) format. You can get this value from the List Common Area Phones API.

Delete a common area phone.

This function performs a DELETE to the /phone/common_area_phones/{commonAreaPhoneId} endpoint.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.
Use this API to remove the common area phone from Zoom Phone System in an account.

Prerequisites:

  • Pro or a higher account with Zoom Phone license.
  • Account owner or admin permissions.
  • Supported device
    Scopes: phone:write:admin

Rate Limit Label: Light

Parameters:

  • common_area_phone_id: &str – Unique Identifier of the common area phone.

Update common area phone.

This function performs a PATCH to the /phone/common_area_phones/{commonAreaPhoneId} endpoint.

Use this API to update details on a specific common area phone in an account.

A common area phone can be provisioned by a Zoom account owner or a Zoom admin so that anyone in an organization can use it. For example, if your office has shared desks that don’t belong to a specific employees, you could add a common area phone so that any person can use it.

Scopes: phone:write:admin
Rate Limit Label: Light

Prerequisites:

  • Pro or a higher account with Zoom Phone license
  • Account owner or admin permissions
  • A supported device

Assign phone numbers to common area phone.

This function performs a POST to the /phone/common_area_phones/{commonAreaPhoneId}/phone_numbers endpoint.

Assign phone numbers to common area phone.

Prerequisites:

  • Pro or a higher account with Zoom Phone license.
  • Account owner or admin permissions. Scope: phone:write:admin

Rate Limit Label: Light

Unassign phone numbers from a common area phone.

This function performs a DELETE to the /phone/common_area_phones/{commonAreaPhoneId}/phone_numbers/{phoneNumberId} endpoint.

Use this API to unassign a phone number from a common Area phone.

Scopes: phone:write:admin
Rate Limit Label: Light

Prerequisites:

  • A Pro or a higher account with a Zoom Phone license
  • An account owner or admin permissions

Parameters:

  • common_area_phone_id: &str – The common area phone’s unique ID.
  • phone_number_id: &str – The phone number or the phone number’s unique ID.

Assign calling plans to common area phone.

This function performs a POST to the /phone/common_area_phones/{commonAreaPhoneId}/calling_plans endpoint.

Assign calling plans to common area phone.

Prerequisites:

  • Pro or a higher account with Zoom Phone license.
  • Account owner or admin permissions. Scope: phone:write:admin

Rate Limit Label: Light

Unassign calling plan from a common area phone.

This function performs a DELETE to the /phone/common_area_phones/{commonAreaPhoneId}/calling_plans/{type} endpoint.

Use this API to unassign a calling plan from a common area phone.

Scopes: phone:write:admin
Rate Limit Label: Light

Prerequisites:

  • A Pro or higher account with a Zoom Phone license
  • An account owner or admin permissions

Parameters:

  • common_area_phone_id: &str – The common area phone’s unique ID.
  • type_: &str – The calling plan to remove.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more