API 참조
vox.ai API 엔드포인트 목록
특정 기간의 일정 정보를 조회하는 엔드포인트입니다.
cURL
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": {} }
조회할 기간의 시작일과 종료일을 포함하는 JSON 페이로드
The body is of type object.
object
일정 조회 성공
The response is of type object.