createAutoReply
Thêm cấu hình tự động trả lời (dành cho zBusiness)
api.createAutoReply(memberId, groupId)
Parameters
Return
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
Related
Last updated