Digitaliso icon

Digitaliso

Consume Digitaliso API.

Overview

The Digitaliso n8n node, when configured with the Item resource and the Get All operation, retrieves a paginated list of items from the Digitaliso API. This node is useful for scenarios where you need to fetch multiple records (items) from your Digitaliso account, such as synchronizing data, generating reports, or integrating item lists into other workflows.

Practical examples:

  • Fetching all inventory items for further processing in n8n.
  • Retrieving a paginated list of products to update another system.
  • Exporting all items for backup or analytics purposes.

Properties

Name Type Meaning
Items String The specific endpoint or type of items to query on the Digitaliso API.
Full Response Boolean If enabled, returns the full HTTP response including metadata; otherwise, only the body.
Per Page Number Maximum number of results per page (0 means return all available items).
Page Number The page number to retrieve (for pagination).
Query Parameters FixedCollection Additional query parameters to include in the request. Each parameter has a name and value.

Output

  • If Full Response is enabled:
    • The output is an object with:
      • A property named after the value of Items, containing the response body (the list of items).
      • A meta object with pagination details:
        • TotalRecord: Total number of records available.
        • TotalPages: Total number of pages.
        • CurrentPage: The current page number.
  • If Full Response is disabled:
    • The output is the response body directly, typically an array of item objects.

Example output with Full Response enabled:

{
  "products": [
    { "id": 1, "name": "Product A", ... },
    { "id": 2, "name": "Product B", ... }
  ],
  "meta": {
    "TotalRecord": 100,
    "TotalPages": 10,
    "CurrentPage": 1
  }
}

Example output with Full Response disabled:

[
  { "id": 1, "name": "Product A", ... },
  { "id": 2, "name": "Product B", ... }
]

Dependencies

  • External Service: Requires access to the Digitaliso API.
  • API Credentials: You must provide valid digitalisoApi credentials (API key and company) in n8n.
  • n8n Configuration: No special environment variables are required beyond standard credential setup.

Troubleshooting

Common issues:

  • Invalid Credentials: If the API key or company is incorrect, authentication will fail.
  • Incorrect Endpoint in "Items": Supplying an invalid value for the "Items" property may result in 404 errors or empty responses.
  • Pagination Issues: Setting "Per Page" to 0 may attempt to fetch all records at once, which could lead to timeouts if the dataset is large.
  • Query Parameter Errors: Malformed or unsupported query parameters can cause API errors.

Error messages:

  • "401 Unauthorized": Check your API key and company credentials.
  • "404 Not Found": Verify the value provided in the "Items" field.
  • "400 Bad Request": Review any custom query parameters for typos or unsupported options.
  • "Request failed with status code XXX": General network or API error; check connectivity and API documentation.

Links and References

Discussion