Fasad Webhook Integration
Webhook for sold listings
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