pub struct PhoneAutoReceptionists {
    pub client: Client,
}

Fields

client: Client

Implementations

Update auto receptionist details.

This function performs a PATCH to the /phone/auto_receptionists/{autoReceptionistId} endpoint.

An auto receptionist answers calls with a personalized recording and routes calls to a phone user, call queue, common area phone, or voicemail. An auto receptionist can also be set up so that it routes calls to an interactive voice response (IVR) system to allow callers to select the routing options.
Use this API to change information such as display name and extension number assigned to the main auto receptionist.

Prerequisites:

  • Pro or higher account with Zoom Phone license.
    Scopes: phone:write:admin

Rate Limit Label: Light

Parameters:

  • auto_receptionist_id: &str – Unique Identifier of the Auto Receptionist. It can be retrieved from the List Sites API.

Assign phone numbers.

This function performs a POST to the /phone/auto_receptionists/{autoReceptionistId}/phone_numbers endpoint.

Assign available phone numbers to an auto receptionist. The available numbers can be retrieved using the List Phone Numbers API with type query parameter set to “unassigned”.

Prerequisites:

  • Pro or higher account plan with Zoom Phone License
  • Account owner or admin permissions
    Scopes: phone:write:admin

Rate Limit Label: Light

Parameters:

  • auto_receptionist_id: &str – Unique Identifier of the Auto Receptionist. It can be retrieved from the List Sites API.

Unassign all phone numbers.

This function performs a DELETE to the /phone/auto_receptionists/{autoReceptionistId}/phone_numbers endpoint.

Unassign all phone numbers that were previously assigned to an auto receptionist.

Prerequisites:

  • Pro or higher account plan with Zoom Phone License
  • Account owner or admin permissions
    Scopes: phone:write:admin

Rate Limit Label: Light

Unassign a phone number.

This function performs a DELETE to the /phone/auto_receptionists/{autoReceptionistId}/phone_numbers/{phoneNumberId} endpoint.

Unassign a specific phone number that was previously assigned to an auto receptionist.

Prerequisites:

  • Pro or higher account plan with Zoom Phone License
  • Account owner or admin permissions
    Scopes: phone:write:admin

Rate Limit Label: Light

Parameters:

  • auto_receptionist_id: &str – Unique identifier of the auto receptionist. This can be retrieved from the List Phone Sites API.
  • phone_number_id: &str – Unique Identifier of the phone number or provide the actual phone number in e164 format (example: +19995550123).

Add an auto receptionist.

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

Auto receptionists answer calls with a personalized recording and routes calls to a phone user, call queue, common area phone, voicemail or an IVR system. Use this API to add an auto receptionist to a Zoom Phone.

Prerequisites:

  • Pro or higher account with Zoom Phone license.
    Scopes: phone:write:admin
    Rate Limit Label: Light

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