Example #1
0
 /// <summary>
 ///     Returns the list of chats where the user is a member and also public teams that can be joined. All records in
 ///     response are sorted by creation time of a chat in ascending order. **Note** 'Chat' is a general name for all types
 ///     of threads icluding *Personal* (user's own me-chat), *Direct* (one on one chat), *Group* (chat of 3-15 participants
 ///     without specific name), *Team* (chat of 2 and more participants, with a specific name), *Everyone* (company chat
 ///     including all employees, with a specific name).
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/glip/chats
 ///     Rate Limit Group: Medium
 ///     App Permission: TeamMessaging
 ///     User Permission: UnifiedAppDesktop
 /// </summary>
 public async Task <GlipChatsList> List(ListGlipChatsParameters queryParams = null,
                                        RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Get <GlipChatsList>(Path(false), queryParams, restRequestConfig));
 }
Example #2
0
 /// <summary>
 /// Operation: Get Chats
 /// HTTP Method: GET
 /// Endpoint: /restapi/v1.0/glip/chats
 /// Rate Limit Group: Medium
 /// App Permission: Glip
 /// User Permission: Glip
 /// </summary>
 public async Task <RingCentral.GlipChatsList> List(ListGlipChatsParameters queryParams = null,
                                                    CancellationToken?cancellationToken = null)
 {
     return(await rc.Get <RingCentral.GlipChatsList>(this.Path(false), queryParams, cancellationToken));
 }
Example #3
0
 /// <summary>
 /// Operation: Get Chats
 /// Http Get /restapi/v1.0/glip/chats
 /// </summary>
 public async Task <RingCentral.GlipChatsList> List(ListGlipChatsParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.GlipChatsList>(this.Path(false), queryParams));
 }