Skip to main content

Get all appointments for a community.

Returns a paginated list of booked appointments ordered by appointment ID.

GET
/api/partners/v1/community/:community_id/appointments/booked/

Request

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

Response

Example responseJSON200 · application/json
{
"data": [
{
"id": 123,
"date": "2023-10-05",
"time": "09:55",
"client": {
"id": 1,
"first_name": "John",
"last_name": "Doe",
"email": "johndoe@sample.email",
"phone": "+15551234567",
"origin_source": "Online Leasing"
},
"agent": {
"name": "Jane Doe",
"email": "janedoe@sample.email"
},
"tour_type": "Self-Guided",
"status": "Completed"
}
],
"page": 1,
"total_pages": 1,
"total_items": 1
}