Overview
This node allows you to create a new conversion in RD Station Marketing. It is designed for scenarios where you need to register a lead conversion event, such as when a user completes a form, downloads content, or performs another action that should be tracked as a conversion in your marketing automation workflow.
Practical examples:
- Automatically registering a new lead conversion when a user submits a contact form on your website.
- Tracking custom conversion events from other systems and sending them to RD Station Marketing.
- Enriching conversions with additional custom fields relevant to your business process.
Properties
| Name | Type | Meaning |
|---|---|---|
| Identifier | String | Conversion Identifier. A unique identifier for the conversion event (e.g., "new lead"). Required. |
| String | Primary email for the lead. The email address associated with the conversion. Required. | |
| Additional Fields | Collection | Allows adding extra information to the conversion. This can include custom fields not predefined in the standard payload. |
| └ Custom Fields | FixedCollection (multiple) | Adds custom fields to the conversion. Each field requires: - Field Name on RD Station Marketing: The custom field's API name (must start with cf_).- Field Value: The value to set for this field. |
Output
The node outputs an array of JSON objects, each representing the response from the RD Station Marketing API after attempting to create a conversion. The structure of the output depends on the API's response, but typically includes status information and any data returned by RD Station Marketing about the created conversion.
Example output:
[
{
"status": "success",
"conversion_id": "123456",
"message": "Conversion registered successfully"
}
]
Note: The actual fields may vary based on the API response.
Dependencies
- External Service: Requires access to the RD Station Marketing API.
- API Credentials: You must configure valid
rdStationMarketingApicredentials in n8n. - Network Access: The node makes HTTP POST requests to
https://api.rd.services/platform/conversions.
Troubleshooting
Missing Credentials:
Error:No credentials got returned!
Solution: Ensure that therdStationMarketingApicredential is properly configured in n8n.Invalid Field Names:
If custom fields are not prefixed withcf_, the API may reject the request. Always use the correct field identifiers as defined in your RD Station Marketing account.API Errors:
Any errors returned by the RD Station Marketing API (such as invalid email format, missing required fields, or authentication issues) will be passed through in the output. Check the error message for details and verify your input data.