Actaport
Interact with Actaport API. Actaport is a cloud-based legal practice management software that provides digital law office tools for case management, communication, and practice administration.
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 integrates with the Actaport API, a cloud-based legal practice management software. Specifically, the "Aufgaben" (Tasks) resource with the "Get" operation allows users to retrieve detailed information about a specific task by its ID.
Typical use cases include:
- Fetching details of a particular task in a legal case management workflow.
- Automating retrieval of task data for reporting or further processing.
- Integrating task information into other systems or workflows within n8n.
For example, a user can input a task ID to get all associated details such as title, description, due date, status, priority, recipients, related case files, and notes.
Properties
| Name | Meaning |
|---|---|
| Aufgabe ID | The unique identifier of the task to retrieve. This is a required string input property. |
Output
The node outputs the JSON response from the Actaport API corresponding to the requested task. This JSON typically contains all available fields of the task, such as:
- Title
- Description
- Due date
- Status
- Priority
- Recipients
- Related case file references
- Notes and documents linked to the task
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 sends HTTP GET requests to the endpoint
/aufgaben/{aufgabeId}where{aufgabeId}is the provided task ID.
Troubleshooting
- Missing or invalid Aufgabe ID: The task ID is required; ensure it is provided and correctly formatted.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Task not found: If the task ID does not exist, the API will likely return a 404 error. Confirm the ID is correct.
- Network issues: Ensure connectivity to the Actaport API endpoint and that the base URL is correctly set.
- API rate limits: Excessive requests may lead to throttling; check API usage policies.
Links and References
- Actaport Official Website
- Actaport API documentation (not publicly linked here; refer to your Actaport account or support for access)