Actions12
Overview
This node allows you to create a new Company in Accelo via its API. It is useful for automating the process of adding company records from other systems, forms, or workflows directly into your Accelo account. Common scenarios include syncing CRM data, onboarding new clients, or integrating with lead capture tools.
Practical examples:
- Automatically add a new company when a deal is closed in another CRM.
- Create companies in Accelo from form submissions on your website.
- Batch import company data from spreadsheets or other sources.
Properties
| Name | Meaning |
|---|---|
| Company Name | The name of the Company (required). |
| Company Website | The website of the Company. |
| Company Phone | The phone number of the Company. |
| Company Comments | Any comments or notes about the Company. |
Output
The output will be a JSON object representing the newly created Company in Accelo. The structure typically includes fields such as the company ID, name, website, phone, comments, and any other metadata returned by the Accelo API upon creation.
Example output:
{
"id": 123,
"name": "Acme Corp",
"website": "https://acme.com",
"phone": "+1-555-1234",
"comments": "New client from web form",
// ...other fields as provided by Accelo
}
Dependencies
- External Service: Requires an Accelo account and access to the Accelo API.
- API Key/Credentials: You must configure n8n with valid Accelo API credentials (
acceloApi). - n8n Configuration: No additional configuration required beyond setting up credentials.
Troubleshooting
- Missing Required Field: If "Company Name" is not provided, the node will fail. Ensure all required fields are filled.
- Invalid Credentials: Errors related to authentication indicate that the Accelo API credentials are missing or incorrect. Double-check your credential setup in n8n.
- API Limitations: If you hit rate limits or receive errors from Accelo, consult their API documentation for guidance.