Actaport
Actions29
- Akten Actions
- Aufgaben Actions
- Benutzer Actions
- Dokumente Actions
- Fristen Actions
- Kollisionsprüfung Actions
- Kontakt Actions
- Notizen Actions
- Rechnungen Actions
- Widervorlagen Actions
Overview
This node allows you to create a new contact ("Kontakt") in the Actaport legal practice management system via its API. It is useful for automating the addition of contacts such as clients, partners, or other relevant persons or entities into your Actaport database directly from workflows.
Typical scenarios include:
- Automatically adding new client contacts collected from web forms.
- Syncing contacts from other CRM or ERP systems into Actaport.
- Creating contacts programmatically during case or task creation processes.
For example, you can use this node to create a contact with personal details like first name, last name, and salutation, along with additional information such as addresses, email addresses, phone numbers, and legal representatives.
Properties
| Name | Meaning |
|---|---|
| Vorname | First name of the contact. |
| Name | Last name of the contact. |
| Anrede | Salutation of the contact (e.g., Mr., Ms.). |
| Typ | Type of contact: either "Natürliche Person" (natural person) or "Juristische Person" (legal entity). |
| Additional Fields | A collection of optional fields to provide more detailed information about the contact: |
| - Adressen | Multiple addresses with details such as address addition, recipient, house number, country, city, postal code, street/postbox, type (private or business), and whether it is a postal address. |
| - Akademischer Titel | One or more academic titles associated with the contact. |
| - Ansprechpartner | Contact persons related to this contact, each with an ID and display name. |
| - Bemerkung | Notes or remarks about the contact. |
| - Email Adressen | Multiple email addresses. |
| - Favorit | Boolean flag indicating if the contact is marked as a favorite. |
| - Faxnummern | Multiple fax numbers with value and type (private or business). |
| - Geburtsdatum | Birth date of the contact. |
| - Gesetzliche Vertreter | Legal representatives of the contact, each with a type (e.g., Vorstand, Geschäftsführer, Bevollmächtigter) and linked contact ID and display name. |
| - Kontoverbindungen | Multiple bank account connections including IBAN, BIC, account holder, and credit institution. |
| - Rechtsform | Legal form of the contact (string). |
| - Telefonnummern | Multiple phone numbers with value and type (private, business, mobile). |
Output
The node outputs the JSON response returned by the Actaport API after creating the contact. This typically includes the full details of the newly created contact record, such as assigned IDs, all submitted fields, and any additional metadata provided by the API.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the Actaport API.
- The base URL for the API must be configured in the credentials.
- The node uses HTTP POST requests to the
/kontakteendpoint of the Actaport API.
Troubleshooting
- Authentication errors: Ensure that the API key credential is correctly set up and has sufficient permissions to create contacts.
- Validation errors: The API may reject requests missing required fields or containing invalid data formats (e.g., incorrect date format for birthdate). Verify that mandatory fields like
vorname,name, andtypare properly filled. - Network issues: Check connectivity to the Actaport API endpoint and confirm that the base URL is correct.
- Unexpected API responses: Review the API documentation for any changes or additional required fields not covered by the node's properties.
Links and References
- Actaport API Documentation (general reference for API endpoints and data models)
- Actaport Official Website