Actions65
- Actions de Formation Actions
- Catalogue Public (Sessions) Actions
- Centres de Formation Actions
- Contacts Actions
- Entreprises Actions
- Factures Actions
- Formateurs Actions
- Modules/Produits Actions
- Participants Actions
- Sessions Permanentes Actions
- Salles de Formation Actions
Overview
This node operation creates a new company record in the Dendreo system. It is useful for automating the addition of company data into the Dendreo platform, such as when onboarding new clients or partners. For example, it can be used to programmatically add company details like name, SIRET number, address, city, and postal code from an external source or form submission.
Use Case Examples
- Automatically create a company in Dendreo when a new client signs up on a website.
- Batch import company data from a CRM system into Dendreo.
Properties
| Name | Meaning |
|---|---|
| Company Name | The official name of the company (raison_sociale). This is a required field for creating a company. |
| SIRET | The company's SIRET number, a unique French business identification number. |
| Address | The physical address of the company. |
| City | The city where the company is located. |
| Postal Code | The postal code for the company's address. |
| Company Properties | Additional custom properties for the company, specified as name-value pairs. Useful for adding extra metadata or attributes beyond the standard fields. |
| Data (JSON) | Raw JSON data for the company record. This allows advanced users to specify the entire company data structure directly in JSON format, bypassing individual fields. |
Output
JSON
jsonid_entreprise- The unique identifier of the created company in Dendreo.raison_sociale- The official name of the created company.siret- The SIRET number of the created company.adresse- The address of the created company.ville- The city of the created company.code_postal- The postal code of the created company.
Dependencies
- Dendreo API with authentication credentials
Troubleshooting
- Ensure the API credentials are correctly configured and have permissions to create companies in Dendreo.
- Verify that the required field 'Company Name' is provided; missing this will cause an error.
- If using the JSON data input, ensure the JSON is valid and correctly structured to avoid parsing errors.
- Check for network issues or API endpoint availability if requests fail.
- Error messages like 'Authentication failed' indicate invalid or expired API keys; update credentials accordingly.
- A '404 not found' error suggests the resource or endpoint is incorrect or does not exist.
Links
- Dendreo API Documentation - Official API documentation for Dendreo, useful for understanding available endpoints and data formats.