updateAutoReply
Thiết lập tự động xóa tin nhắn (dành cho zBusiness)
api.updateAutoReply(payload)
Parameters
payload
UpdateAutoReplyPayload
Return
Promise<UpdateAutoReplyResponse>
Types
export type UpdateAutoReplyPayload = {
id: number;
content: string;
isEnable: boolean;
startTime: number;
endTime: number;
scope: AutoReplyScope;
uids?: string | string[];
};
export type UpdateAutoReplyResponse = {
item: AutoReplyItem;
version: number;
};Examples
Cập nhật tự động trả lời trong khoảng từ 18 giờ đến 7 giờ 30 hôm sau
Related
Last updated