getAliasList
Lấy toàn bộ thẻ phân loại
api.getAliasList([count, page])
Parameters
count
number?
mặc định 100
page
number?
mặc định 1
Return
Promise<GetAliasListResponse>
Types
export type GetAliasListResponse = {
items: {
userId: string;
alias: string;
}[];
updateTime: string;
};
Examples
api.getAliasList()
.then(console.log)
.catch(console.error);
Last updated