Documentation

Support

Vivox Core SDK

Vivox Core SDK

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_tbase
The common properties for all requests.
VX_HANDLEaccount_handle
The handle returned from a successful login request.
intcursor
Page number you want to retrieve, 0-indexed.
long longrequest_time
The time of your first request, this ensures that you ignore newer messages coming into conversations and therefor preserve the ordering between requests.
intpage_size
The number of conversations that will be returned per page, maximum value of 50 will be respected.

Detailed Description

struct vx_req_account_get_conversations;
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.

Public Attributes Documentation

variable base

vx_req_base_t base;
The common properties for all requests.

variable account_handle

VX_HANDLE account_handle;
The handle returned from a successful login request.

variable cursor

int cursor;
Page number you want to retrieve, 0-indexed. The default setting is -1 which returns the first page

variable request_time

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. The default setting is -1 which assumes you only want the first page of results.

variable page_size

int 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 results