import { Client } from "@xdevplatform/xdk";
const client = new Client({ bearerToken: "YOUR_BEARER_TOKEN" });
// 리스트 멤버 조회
const paginator = client.lists.getMembers("84839422");
for await (const page of paginator) {
page.data?.forEach((user) => {
console.log(user.username);
});
}