디바이스 (Targets)
디바이스는 방송 대상의 최소 단위입니다. oe.targets.*는 파트너 앱이 접근 가능한 디바이스 목록을 조회합니다.
oe.targets.list()
접근 가능한 전체 디바이스를 반환합니다.
ts
list(): Promise<DeviceView[]>ts
const devices = await oe.targets.list();
for (const d of devices) {
console.log(d.handle, d.name, d.status);
}DeviceView: handle · name · status. 방송 대상(targetHandle)이나 그룹 멤버 편집에 이 handle을 사용합니다.

