TwentyDEV icon

TwentyDEV

Consume the Twenty API

Actions252

Overview

This node allows you to delete a specific "View Group" by its unique identifier. It is useful in scenarios where you need to programmatically remove view groups from a system or application that organizes data or content into such groups. For example, if you manage dashboards or user interface layouts grouped under "View Groups," this node helps automate the cleanup or management of these groups by deleting them when they are no longer needed.

Properties

Name Meaning
Id The unique identifier (object id) of the View Group to be deleted. This is a required string value.

Output

The output will typically contain JSON data confirming the deletion status of the specified View Group. This may include success confirmation or details about the deleted object. The node does not output binary data.

Dependencies

  • Requires an API key credential for authentication with the external service providing the View Groups functionality.
  • The node uses a base URL and headers configured via credentials, which must be set up properly in n8n.
  • No additional external dependencies beyond the API access are indicated.

Troubleshooting

  • Common issues:
    • Providing an invalid or non-existent Id will likely result in an error indicating the View Group could not be found.
    • Missing or incorrect API credentials will cause authentication failures.
  • Error messages:
    • "Object not found" or similar indicates the Id does not correspond to any existing View Group.
    • Authentication errors suggest checking the API key or domain configuration.
  • Resolution:
    • Verify the Id is correct and exists.
    • Ensure API credentials are valid and have necessary permissions.
    • Confirm network connectivity to the API endpoint.

Links and References

  • Refer to the official API documentation of the service managing View Groups for detailed information on the delete operation.
  • Consult n8n documentation on setting up API credentials and using HTTP request nodes for further customization.

Discussion