Skip to main content

ChatChannelsAccountLevel

Struct ChatChannelsAccountLevel 

Source
pub struct ChatChannelsAccountLevel {
    pub client: Client,
}

Fields§

§client: Client

Implementations§

Source§

impl ChatChannelsAccountLevel

Source

pub async fn get_channel( &self, user_id: &str, channel_id: &str, ) -> Result<Response<Channel>, ClientError>

Get a channel.

This function performs a GET to the /chat/users/{userId}/channels/{channelId} endpoint.

Use this API to get information about a specific channel. For user-level apps, pass the me value instead of the userId parameter.

Zoom chat channels allow users to communicate via chat in private or public groups.

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

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the View or Edit permission for Chat Channels.

Parameters:

  • channel_id: &str – Channel ID: Unique Identifier of a channel.
  • user_id: &str – Unique identifier of the user who is the owner of the channel.
Source

pub async fn delete_channel( &self, user_id: &str, channel_id: &str, ) -> Result<Response<()>, ClientError>

Delete a channel.

This function performs a DELETE to the /chat/users/{userId}/channels/{channelId} endpoint.

Use this API to delete a specific channel. For user-level apps, pass the me value instead of the userId parameter.

Zoom chat channels allow users to communicate via chat in private or public groups.

Scopes: chat_channel:write:admin
Rate Limit Label: Medium

Note: This API only supports a user-managed OAuth app.

Parameters:

  • channel_id: &str – Channel ID: Unique Identifier of a channel.
Source

pub async fn update_channel( &self, user_id: &str, channel_id: &str, body: &Attendees, ) -> Result<Response<()>, ClientError>

Update a channel.

This function performs a PATCH to the /chat/users/{userId}/channels/{channelId} endpoint.

Use this API to update the name of a specific channel created by a user. For user-level apps, pass the me value instead of the userId parameter.

Zoom chat channels allow users to communicate via chat in private or public channels.

Scopes: chat_channel:write:admin
Rate Limit Label: Medium

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the Edit permission for Chat Channel.

Parameters:

  • channel_id: &str – User’s first name.
  • user_id: &str – Unique Identifier of the Zoom user who is the owner of the channel.
Source

pub async fn list_channel_members( &self, user_id: &str, channel_id: &str, page_size: i64, next_page_token: &str, ) -> Result<Response<Vec<ListChannelMembersResponse>>, ClientError>

List channel members.

This function performs a GET to the /chat/users/{userId}/channels/{channelId}/members endpoint.

Use this API to list all members of a channel. For user-level apps, pass the me value instead of the userId parameter.

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

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the View or Edit permission for Chat Channels.

Parameters:

  • channel_id: &str – User’s first name.
  • page_size: i64 – The number of records returned with 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.
  • user_id: &str – Unique identifier of the user who is the owner of this channel.
Source

pub async fn list_all_channel_members( &self, user_id: &str, channel_id: &str, ) -> Result<Response<Vec<ListChannelMembersResponse>>, ClientError>

List channel members.

This function performs a GET to the /chat/users/{userId}/channels/{channelId}/members endpoint.

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

Use this API to list all members of a channel. For user-level apps, pass the me value instead of the userId parameter.

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

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the View or Edit permission for Chat Channels.

Source

pub async fn invite_channel_members( &self, user_id: &str, channel_id: &str, body: &InviteChannelMembersRequest, ) -> Result<Response<InviteChannelMembersResponse>, ClientError>

Invite channel members.

This function performs a POST to the /chat/users/{userId}/channels/{channelId}/members endpoint.

Use this API to invite members that are in a user’s contact list to a channel. For user-level apps, pass the me value instead of the userId parameter.

Scopes: chat_channel:write:admin
Rate Limit Label: Medium

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the Edit permission for Chat Channels.

Parameters:

  • channel_id: &str – Channel ID: Unique Identifier of the channel.
  • user_id: &str – Unique identifier of the user who is the owner of this channel.
Source

pub async fn remove_channel_member( &self, user_id: &str, channel_id: &str, member_id: &str, ) -> Result<Response<()>, ClientError>

Remove a member.

This function performs a DELETE to the /chat/users/{userId}/channels/{channelId}/members/{memberId} endpoint.

A channel can have one or multiple members. Use this API to remove a member from a chat channel. For user-level apps, pass the me value instead of the userId parameter.

Scopes: chat_channel:write:admin
Rate Limit Label: Medium

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has Edit permission for Chat Channels.

Parameters:

  • channel_id: &str – Unique Identifier of the Channel from where you would like to remove a member. This can be retrieved from the List Channels API.
  • member_id: &str – Email address of the member whom you would like to be remove from the channel.
  • user_id: &str – Unique identifier of the channel owner.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more