POST
/
get_schedules
curl --request POST \
  --url https://api.tryvox.co/functions/v1/get_schedules \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "from_date": "2023-12-25",
    "to_date": "2023-12-25"
  }
}'
{
  "status": "success",
  "data": [
    {
      "id": 123,
      "ownerId": 123,
      "name": "<string>",
      "timeZone": "<string>",
      "availability": [
        {
          "days": [
            "<string>"
          ],
          "startTime": "<string>",
          "endTime": "<string>"
        }
      ],
      "isDefault": true,
      "overrides": [
        {
          "date": "2023-12-25",
          "startTime": "<string>",
          "endTime": "<string>"
        }
      ]
    }
  ],
  "error": {}
}

특정 기간의 일정 정보를 조회하는 엔드포인트입니다. 시작일과 종료일을 입력하면 해당 기간의 가용 시간과 일정 정보를 반환합니다.

Body

application/json
조회할 기간의 시작일과 종료일을 포함하는 JSON 페이로드
args
object
required

Response

200
application/json
일정 조회 성공
status
string

응답 상태

data
object[]
error
object

에러 정보