updateQuickMessage
Cập nhật thông tin trang cá nhân, doanh nghiệp
api.updateQuickMessage(updatePayload, itemId)
Parameters
updatePayload
UpdateQuickMessagePayloaditemId
number
Return
Promise<UpdateQuickMessageResponse>
Types
export type UpdateQuickMessagePayload = {
keyword: string;
title: string;
media?: AttachmentSource;
};
export type UpdateQuickMessageResponse = {
item: QuickMessage;
version: number;
};Examples
Related
Last updated