POST
/
get_schedules
일정 조회
curl --request POST \
  --url https://api.tryvox.co/functions/v1/get_schedules \
  --header 'Content-Type: application/json' \
  --data '{
  "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 페이로드

The body is of type object.

Response

200
application/json

일정 조회 성공

The response is of type object.