Fasad Webhook Integration
Webhook for sold listings
When listings have been sold, ping the Movello API with information about when the new owners will get access to the property. Example request:
curl -X POST \
"${API_URL}/rest/v1/webhook/fasad" \
-H 'content-type: application/json' \
-d '{
"listingId": 1337,
"moveInDate": "2021-05-04T16:20:00.000Z"
}'
Expected response
{
"ok": true,
"body": {
"listingId": 1337,
"moveInDate": "2021-05-04T16:20:00.000Z"
}
}
Last updated
Was this helpful?