YOOV Lancode icon

YOOV Lancode

Interact with Lancode API

Overview

The YOOV Lancode node for n8n allows you to interact with the YOOV Lancode API, specifically to manage items (rows) within a worksheet.
For the Item → Delete operation, this node deletes a specific row from a given worksheet based on its Row ID.

Common scenarios:

  • Automating the removal of outdated or incorrect records in a YOOV Lancode worksheet.
  • Integrating data cleanup steps into larger workflows, such as after processing or archiving data.
  • Enabling users to trigger deletions based on conditions or events in other systems.

Example:
You have a workflow that processes form submissions and, under certain conditions, needs to remove a record from a YOOV Lancode worksheet automatically.


Properties

Name Meaning
Worksheet ID The unique identifier of the worksheet containing the item (row) to delete.
Row ID The unique identifier of the row (item) to be deleted from the specified worksheet.
Use Raw Output If enabled, returns the raw API response instead of a simplified output. Options: true/false

Output

  • The output is a JSON object reflecting the result of the deletion operation.
  • If "Use Raw Output" is enabled, the structure matches the raw response from the YOOV Lancode API.
  • On error (if "Continue On Fail" is enabled), the output will include an error field with the error message:
    {
      "error": "Error message here"
    }
    

Dependencies

  • External Service: Requires access to the YOOV Lancode API.
  • Authentication: Needs valid credentials configured in n8n under the name lancodeApi.
  • n8n Configuration: The hostname for the API must be set in the credentials.

Troubleshooting

Common Issues:

  • Missing or Invalid Worksheet ID / Row ID:
    • Error: "Worksheet ID is required" or "Row ID is required"
    • Solution: Ensure both IDs are provided and correct.
  • Invalid Credentials:
    • Error: Authentication errors from the API.
    • Solution: Check and update your lancodeApi credentials in n8n.
  • API Errors:
    • Error messages from the API will be passed through if "Continue On Fail" is enabled.
    • Solution: Review the error message for details; check network connectivity and permissions.

Links and References

Discussion