Actions26
Overview
This node integrates with the Dental Office Cloud API to manage dentist records. Specifically, the "Dentista" resource with the "Criar" (Create) operation allows users to add new dentists to their dental office system. This is useful for dental clinics or offices that want to automate and streamline the process of registering dentists in their management software.
Typical use cases include:
- Automatically adding new dentists when onboarding staff.
- Synchronizing dentist data from other HR or CRM systems.
- Creating dentist profiles with detailed professional and contact information.
For example, a clinic could use this node to create a dentist profile by providing their full name, CPF (Brazilian individual taxpayer registry identification), RG (general registration number), birth date, regional council type and number, and addresses and contacts in JSON format.
Properties
| Name | Meaning |
|---|---|
| Nome | Full name of the dentist. |
| CPF | CPF number of the dentist (Brazilian tax ID). |
| RG | RG number of the dentist (general registration ID). |
| Data de Nascimento | Dentist's birth date. |
| Tipo de CR | Type of Regional Council (e.g., CRO - Conselho Regional de Odontologia). |
| Número do CR | Number of the Regional Council registration. |
| UF do CR | State abbreviation of the Regional Council. |
| Endereços | Address attributes in JSON format. |
| Contatos | Contact attributes in JSON format. |
The JSON fields for addresses and contacts should be valid JSON strings representing the respective structured data.
Output
The output of the node is a JSON object representing the newly created dentist record as returned by the Dental Office Cloud API. The structure typically includes all the provided input fields along with additional metadata assigned by the system, such as unique IDs and timestamps.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Dental Office Cloud API.
- Needs an API authentication credential configured in n8n to authorize requests.
- The node uses the HTTP POST method to send dentist data to the
/v1/dentistsendpoint of the API.
Troubleshooting
- Invalid JSON Format: If the
EndereçosorContatosJSON inputs are malformed, the node will throw an error indicating invalid JSON format. Ensure these fields contain properly formatted JSON strings. - Missing Required Fields: The API may reject requests missing mandatory fields like
name. Verify all required properties are set. - Authentication Errors: If the API key or credentials are incorrect or expired, the node will fail to authenticate. Check and update the API credentials in n8n.
- API Endpoint Errors: Network issues or API downtime can cause request failures. Confirm the Dental Office Cloud API is reachable and operational.
Links and References
- Dental Office Cloud API Documentation (example placeholder link)
- n8n Documentation on HTTP Request Nodes