Skip to main content

Get times available for appointment booking

Returns a list of times that are avaialble for a booking on the given date. Any of these times should be a valid value for start field when booking an appointment using the booking end-point.

GET
/api/partners/v1/community/:community_id/appointments/available-times/

Request

Example requestGET
$ curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/appointments/available-times/"

Response

Example responseJSON200 · application/json
{
"available_times": [
"2020-01-07T09:00:00"
],
"duration": 30,
"timezone": "America/New_York"
}