Actaport icon

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

Overview

This node integrates with the Actaport API, a cloud-based legal practice management software. Specifically, for the Dokumente resource and the Get operation, it retrieves detailed information about a specific document by its unique ID.

Typical use cases include:

  • Fetching metadata or details of a legal document stored in Actaport.
  • Automating workflows that require document data retrieval for further processing or review.
  • Integrating document information into other systems or reports.

For example, a user might want to automatically retrieve a document's details when a case reaches a certain stage, enabling automated notifications or updates elsewhere.

Properties

Name Meaning
Document ID The unique identifier of the document to retrieve. This is required to specify which document's details should be fetched.

Output

The node outputs the JSON response from the Actaport API containing the document's details. This typically includes all metadata and properties associated with the document identified by the provided Document ID.

If the document contains binary content (e.g., file attachments), the node may also output binary data representing the document file, allowing downstream nodes to process or save the actual document content.

Dependencies

  • Requires an API key credential for authenticating with the Actaport API.
  • The base URL for the Actaport API must be configured in the credentials.
  • The node sends HTTP GET requests to the endpoint /v1/documents/{documentId} to fetch document data.

Troubleshooting

  • Missing or invalid Document ID: Ensure the Document ID property is set and correctly references an existing document in Actaport.
  • Authentication errors: Verify that the API key credential is valid and has sufficient permissions to access documents.
  • Network or API errors: Check connectivity to the Actaport API and confirm the base URL is correct.
  • Document not found: If the API returns a 404 error, the specified Document ID may not exist or the user lacks access rights.

Links and References

  • Actaport Official Website
  • Actaport API documentation (not publicly linked here; refer to your Actaport account or support for API docs)

Discussion