vx_req_account_get_conversations
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 20 hours ago
Returns a list of conversations a user is participating in, in reverse order. More...
#include <VxcRequests.h>Public Attributes
Name | |
|---|---|
| vx_req_base_t | base The common properties for all requests. |
| VX_HANDLE | account_handle The handle returned from a successful login request. |
| int | cursor Page number you want to retrieve, 0-indexed. |
| long long | request_time The time of your first request, this ensures that you ignore newer messages coming into conversations and therefor preserve the ordering between requests. |
| int | page_size The number of conversations that will be returned per page, maximum value of 50 will be respected. |
Detailed Description
Returns a list of conversations a user is participating in, in reverse order. See: vx_resp_account_req_get_conversations Only returns conversations from a user's DMs and also from channels where a user sent a message.struct vx_req_account_get_conversations;
Public Attributes Documentation
variable base
The common properties for all requests.vx_req_base_t base;
variable account_handle
The handle returned from a successful login request.VX_HANDLE account_handle;
variable cursor
Page number you want to retrieve, 0-indexed. The default setting is -1 which returns the first pageint cursor;
variable request_time
The time of your first request, this ensures that you ignore newer messages coming into conversations and therefor preserve the ordering between requests. The default setting is -1 which assumes you only want the first page of results.long long request_time;
variable page_size
The number of conversations that will be returned per page, maximum value of 50 will be respected. The default setting is -1 which returns a maximum of 50 resultsint page_size;