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"
}'

For testing, use our demo API: https://api.demo.movello.se For production, use https://api.movello.se

Expected response

{
    "ok": true,
    "body": {
        "consumerId": "97cf177b-b811-4c8a-9628-5a54a70e4e69",
        "eaOid": "962e5cf7-f9f5-4382-a578-970472d38783"
    }
}

Last updated

Was this helpful?