getPinConversations

Lấy danh sách cuộc trò chuyện được ghim

api.getPinConversations()

Parameters

  • groupId string

Return

Promise<GetPinConversationsResponse>

Types

export type GetPinConversationsResponse = {
    conversations: string[];
    version: number;
};

Examples

api.getPinConversations()
    .then(console.log)
    .catch(console.error);

Last updated