Skip to main content

Get dates available for appointment booking

Returns a list of dates that have times available for appointments in the next 60 days.

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

Request

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

Response

Example responseJSON200 · application/json
{
  "available_days": [
    "2020-01-07"
  ]
}

Errors

Errors specific to this endpoint

Community Not Set Up for Tour Scheduling (400)

Returned when the community has no employee group configured.

Error responseJSON400 · application/json
{
"error_type": "CommunitySchedulingInactive",
"message": "Community does not have tour scheduling enabled."
}

Tour Type Not Enabled (400)

Returned when the requested tour_type isn't enabled for this community's employee group. The message names the tour type you requested — for example, guided, self-guided, or video.

Error responseJSON400 · application/json
{
"error_type": "CommunitySchedulingInactive",
"message": "Community does not have guided tour scheduling enabled."
}