updateAutoReply
Thiết lập tự động xóa tin nhắn (dành cho zBusiness)
api.updateAutoReply(payload)
Parameters
Return
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
Related
Last updated