Quedro Webhook Integration
Webhook for sold listings
When a customer has bought or sold a property, ping the Movello API with the customer id and listing id. Example request:
curl -X POST \
"${API_URL}/rest/v1/webhook/quedro" \
-H 'content-type: application/json' \
-d '{
"consumerId": "97cf177b-b811-4c8a-9628-5a54a70e4e69",
"eaOid": "962e5cf7-f9f5-4382-a578-970472d38783"
}'
Expected response
{
"ok": true,
"body": {
"consumerId": "97cf177b-b811-4c8a-9628-5a54a70e4e69",
"eaOid": "962e5cf7-f9f5-4382-a578-970472d38783"
}
}
Last updated
Was this helpful?