Schedule
월간일정 조회 API
SWMaestro의 월간일정을 조회합니다. schedule API는 schedule/list.do 기반 일정 목록을 반환합니다.
List
월간일정 목록을 페이지 단위로 조회합니다.
const { items, pagination } = await client.schedule.list()
const { items: page2 } = await client.schedule.list({ page: 2 })
Response
interface ScheduleListItem {
id: number
category: string
title: string
period: { start: string; end: string }
}
id는 SWMaestro가 별도 식별자를 노출하지 않아 응답 내 행 순서(1-based)를 사용합니다.