ADVBOX icon

ADVBOX

Consume ADVBOX API

Actions8

Overview

This node integrates with the ADVBOX API to manage legal case-related data. Specifically, for the Task - Create operation, it allows users to create a new task associated with lawsuits and other entities in the ADVBOX system. This is useful in legal workflows where tasks need to be programmatically created and tracked, such as assigning follow-ups, deadlines, or actions related to specific lawsuits.

Practical examples include:

  • Automatically creating a task when a new lawsuit is registered.
  • Scheduling reminders or actions for legal staff based on case progress.
  • Assigning tasks to multiple guests or participants involved in a lawsuit.

Properties

Name Meaning
Task Data A JSON object containing the details of the task to create. Required fields are:
- from: Identifier of the creator or source of the task (string).
- tasks_id: Identifier of the task type or template (string).
- lawsuits_id: Identifier of the related lawsuit (string).
- start_date: Start date of the task in ISO format (string, e.g., "2025-06-30").
- guests: Array of identifiers representing guests or participants related to the task (array of strings).

Output

The node outputs the JSON response returned by the ADVBOX API after creating the task. This typically includes the newly created task's details such as its ID, status, timestamps, and any metadata provided by the API.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the ADVBOX API.
  • The node expects the ADVBOX API base URL and token to be configured in the credentials.
  • Network access to the ADVBOX API endpoint is necessary.

Troubleshooting

  • Authentication errors: If the API token is missing or invalid, requests will fail. Ensure that the API key credential is correctly set up and active.
  • Invalid JSON in Task Data: The taskData property must be a valid JSON object with all required fields. Malformed JSON or missing required fields will cause the API request to fail.
  • API request failures: Network issues or incorrect API URLs can cause request errors. Verify connectivity and credential configuration.
  • Error messages from API: The node surfaces error messages returned by the ADVBOX API. Review these messages for clues about invalid parameters or permission issues.

Links and References

Discussion