Digitaliso icon

Digitaliso

Consume Digitaliso API.

Overview

The Digitaliso node for n8n allows you to interact with the Digitaliso API, specifically managing "Items". The Delete Item operation enables users to delete a specific item by its ID. This is useful in workflows where you need to automate the removal of records or objects from your Digitaliso account, such as cleaning up outdated entries or responding to certain triggers that require item deletion.

Example use cases:

  • Automatically deleting items after processing them.
  • Removing test or temporary data as part of a cleanup workflow.
  • Integrating with other systems to synchronize deletions.

Properties

Name Type Meaning
Items String The type or category of items to run the API on (used to build endpoint)
ID Number The unique identifier of the item to be deleted

Output

  • The output is a JSON object indicating the result of the deletion.
  • For successful deletions, the output will be:
    { "success": true }
    
  • If an error occurs and "Continue On Fail" is enabled, the output will include:
    { "error": "<error message>" }
    

Dependencies

  • External Service: Requires access to the Digitaliso API.
  • API Credentials: You must provide digitalisoApi credentials, including:
    • apiKey
    • company
  • n8n Configuration: Ensure the Digitaliso API credentials are set up in n8n's credential manager.

Troubleshooting

Common Issues:

  • Invalid Credentials: If the API key or company information is incorrect, authentication will fail.
  • Missing or Incorrect ID: If the provided ID does not exist or is invalid, the API may return an error.
  • Network Issues: Connectivity problems can prevent requests from reaching the Digitaliso API.

Error Messages:

  • "error": "Request failed with status code 401"
    Cause: Invalid API credentials.
    Solution: Check and update your API key and company information in n8n credentials.

  • "error": "Item not found"
    Cause: The specified ID does not correspond to any existing item.
    Solution: Verify the ID value.

  • "error": "<network error message>"
    Cause: Network or server issues.
    Solution: Check your internet connection and the status of the Digitaliso API.


Links and References


Discussion