Overview
This node interacts with the Acvire API to manage leads. Specifically, for the 'Lead' resource and 'Create' operation, it allows users to create a new lead in the Acvire system by providing a reference code and various lead details such as name, email, organisation, phone, website, and note. This node is useful for automating lead creation workflows, integrating lead data from other systems, or capturing leads from forms or CRM tools.
Use Case Examples
- Automatically create a new lead in Acvire when a form is submitted on a website.
- Sync leads from a CRM system to Acvire by creating leads programmatically.
- Add new lead information collected from marketing campaigns into Acvire for follow-up.
Properties
| Name | Meaning |
|---|---|
| Ref Code | A required reference code used to identify or categorize the lead in the Acvire system. |
| Lead Fields | A collection of optional fields describing the lead, including name, email, organisation, phone, website, and note. |
Output
JSON
ref_code- The reference code provided for the lead.leadname- The name of the created lead.email- The email address of the created lead.organisation- The organisation of the created lead.phone- The phone number of the created lead.website- The website of the created lead.note- Additional notes about the created lead.
Dependencies
- Requires an API key credential for Acvire API authentication to make authorized requests.
Troubleshooting
- Ensure the 'ref_code' is provided and valid, as it is required for lead creation.
- Verify that the API credentials are correctly configured and have the necessary permissions.
- Check the network connection and API endpoint availability if requests fail.
- Handle API errors gracefully, such as invalid input data or server errors, by reviewing error messages returned by the Acvire API.
Links
- Acvire API Documentation - Create Lead - Official documentation for creating leads using the Acvire API.