deleteAutoReply
Xóa cấu hình tự động trả lời (dành cho zBusiness)
api.deleteAutoReply(id)
Parameters
id
number
Return
Promise<DeleteAutoReplyResponse>
Types
export type DeleteAutoReplyResponse = {
item: number;
version: number;
};
Examples
api
.deleteAutoReply(1)
.then(console.log).catch(console.error);
Last updated