Skip to main content

Book an appointment (for existing renter)

Create an appointment(tour) in Funnel for the specified renter for the specified community

POST
/api/partners/v1/community/:community_id/renters/:funnel_renter_id/appointment/

Request

Example requestPOSTapplication/json
$ curl -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -d '{ "start": "2024-01-15T10:00:00", "message": "Looking forward to the tour", "tour_type": "guided", "pms_unit_ids": [ "123", "5678" ] }' \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/renters/:funnel_renter_id/appointment/"

Response

Example responseJSON200 · application/json
{
"prospect": {
"id": 456
},
"appointment": {
"id": 789
}
}