createAutoReply
Thêm cấu hình tự động trả lời (dành cho zBusiness)
api.createAutoReply(memberId, groupId)
Parameters
payload
CreateAutoReplyPayload
Return
Promise<CreateAutoReplyResponse>
Types
export type CreateAutoReplyPayload = {
content: string;
isEnable: boolean;
startTime: number;
endTime: number;
scope: AutoReplyScope;
uids?: string | string[];
};
export type CreateAutoReplyResponse = {
item: AutoReplyItem;
version: number;
};Examples
Cấu hình tự động trả lời trong khoảng từ 18 giờ đến 7 giờ 30 hôm sau
Related
Last updated