curl --request POST \
--url https://crm.universal.rollout.com/api/events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Rollout-Credential-Id: <api-key>' \
--data '
{
"personId": "<string>",
"noteId": "<string>",
"propertyId": "<string>",
"message": "<string>",
"description": "<string>",
"source": "<string>",
"system": "<string>",
"type": "<string>",
"pageTitle": "<string>",
"pageUrl": "<string>",
"pageReferrer": "<string>",
"pageDuration": 123,
"occurredAt": "<string>",
"additionalAttributes": {},
"property": {
"address": "<string>",
"price": 123,
"beds": 123,
"baths": 123,
"sqft": 123
},
"propertySearch": {
"minPrice": 123,
"maxPrice": 123,
"beds": 123,
"location": "<string>",
"propertyType": "<string>"
}
}
'