pub struct Devices {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl Devices
impl Devices
Sourcepub async fn list(
&self,
page_size: i64,
page_number: i64,
next_page_token: &str,
) -> Result<Response<Domains>, ClientError>
pub async fn list( &self, page_size: i64, page_number: i64, next_page_token: &str, ) -> Result<Response<Domains>, ClientError>
List H.323/SIP devices.
This function performs a GET
to the /h323/devices
endpoint.
A H.323 or SIP device can make a video call to a Room Connector to join a Zoom cloud meeting. A Room Connector can also call out to a H.323 or SIP device to join a Zoom cloud meeting. Use this API to list all H.323/SIP Devices on a Zoom account.
Scopes: h323:read:admin
Rate Limit Label: Medium
Parameters:
-
page_size: i64
– The number of records returned within a single API call. -
page_number: i64
– Deprecated - This field has been deprecated and we will stop supporting it completely in a future release. Please use “next_page_token” for pagination instead of this field.The page number of the current page in the returned records.
-
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.
Sourcepub async fn create(&self, body: &Device) -> Result<Response<()>, ClientError>
pub async fn create(&self, body: &Device) -> Result<Response<()>, ClientError>
Create a H.323/SIP device.
This function performs a POST
to the /h323/devices
endpoint.
A H.323 or SIP device can make a video call to a Room Connector to join a Zoom cloud meeting. A Room Connector can also call out to a H.323 or SIP device to join a Zoom cloud meeting. Use this API to add a H.323/SIP device to your Zoom account
Scopes: h323:write:admin
Rate Limit Label: Light
Sourcepub async fn delete(&self, device_id: &str) -> Result<Response<()>, ClientError>
pub async fn delete(&self, device_id: &str) -> Result<Response<()>, ClientError>
Delete a H.323/SIP device.
This function performs a DELETE
to the /h323/devices/{deviceId}
endpoint.
A H.323 or SIP device can make a video call to a Room Connector to join a Zoom cloud meeting. A Room Connector can also call out to a H.323 or SIP device to join a Zoom cloud meeting. Use this API to delete a H.323/SIP device from your Zoom account.
Scopes: h323:write:admin
Rate Limit Label: Light
Parameters:
device_id: &str
– User’s first name.
Sourcepub async fn update(
&self,
device_id: &str,
body: &Device,
) -> Result<Response<()>, ClientError>
pub async fn update( &self, device_id: &str, body: &Device, ) -> Result<Response<()>, ClientError>
Update a H.323/SIP device.
This function performs a PATCH
to the /h323/devices/{deviceId}
endpoint.
A H.323 or SIP device can make a video call to a Room Connector to join a Zoom cloud meeting. A Room Connector can also call out to a H.323 or SIP device to join a Zoom cloud meeting. Use this API to edit information of a H.323/SIP device from your Zoom account.
Scopes: h323:write:admin
Rate Limit Label: Light
Parameters:
device_id: &str
– User’s first name.