TwentyDEV icon

TwentyDEV

Consume the Twenty API

Actions252

Overview

This node operation deletes a single favorite item identified by its unique ID. It is useful in scenarios where you want to remove a specific favorite entry from a collection, such as unfavoriting a post, article, or any other resource marked as favorite. For example, if you have a list of bookmarked articles and want to remove one, this operation allows you to specify the exact favorite to delete by its ID.

Properties

Name Meaning
Id The unique identifier of the favorite object to be deleted.

Output

The output will typically contain a JSON object indicating the result of the deletion operation. This may include confirmation of successful deletion or details about the deleted favorite. No binary data output is expected for this operation.

Dependencies

  • Requires an API key credential to authenticate requests to the external service.
  • The node depends on the Twenty API (as indicated by the bundled code referencing "TwentyDEV" and the OpenAPI specification).
  • Proper configuration of the API base URL and authentication credentials within n8n is necessary.

Troubleshooting

  • Invalid or missing Id: If the provided Id does not exist or is empty, the API will likely return an error. Ensure the Id is correct and corresponds to an existing favorite.
  • Authentication errors: Missing or invalid API credentials will cause authorization failures. Verify that the API key or token is correctly set up.
  • Network issues: Connectivity problems with the API endpoint can cause request failures. Check network access and API availability.
  • Permission issues: The authenticated user might lack permission to delete the specified favorite. Confirm appropriate access rights.

Links and References

Discussion