Crear Evento de Conversión
Record a conversion event for a lead. Conversions track business outcomes such as reservations (intermediary) or closed sales (final).
The workflow_id, master_workflow_id, and currency are automatically inherited from the conversion type, and converted_at defaults to the current time. You only need to provide conversion_type_id, lead_id, and amount. You may optionally provide converted_at, workflow_run_id, or override currency.
Each conversion type can define custom fields (see GET /conversion-types). When creating an event, pass the corresponding values in the metadata object using the field key as the JSON key. For example, if a conversion type has a field with key: "property_unit", include "property_unit": "Apt 302" in metadata.
Autorizaciones
API key for authentication. Keys are prefixed with nxr_live_.
Cuerpo
Create a conversion event. The workflow_id, master_workflow_id, and currency are automatically inherited from the conversion type — you typically do not need to provide them.
Conversion type ID. Use GET /conversion-types to list available types. The type's scope (workflow or master workflow) is automatically applied to the event.
"123e4567-e89b-12d3-a456-426614174100"
Lead ID that converted
"123e4567-e89b-12d3-a456-426614174200"
Monetary value of the conversion
85000
Optional workflow run ID for granular attribution to a specific run.
"123e4567-e89b-12d3-a456-426614174400"
ISO 4217 currency code. Automatically inherited from the conversion type's currency setting — only provide this to override the default.
3"USD"
When the conversion actually occurred (ISO 8601 timestamp). Defaults to the current time if not provided.
"2026-02-01T15:30:00Z"
Key-value data for this conversion event. Keys should match the fields[].key values defined on the conversion type (use GET /conversion-types to see each type's field definitions). You may also include arbitrary extra keys for external system data.
{
"property_unit": "Apt 302",
"broker": "John Smith",
"external_deal_id": "DEAL-1234"
}Free-text notes about this conversion event
"Client paid in cash, expedited closing."