Actions8
Overview
This node interacts with the TRBO API to manage links associated with a user profile. Specifically, the "Delete Link" operation allows users to delete a link by its unique ID. This is useful in scenarios where you want to programmatically remove outdated or unwanted links from your TRBO profile.
Practical examples include:
- Automatically cleaning up expired promotional links.
- Removing broken or irrelevant URLs from your profile.
- Managing link lifecycle as part of an automated workflow.
Properties
| Name | Meaning |
|---|---|
| Link ID | The ID of the link to delete |
Output
The output JSON typically contains the response from the TRBO API after attempting to delete the specified link. This may include confirmation of deletion or error details if the operation failed.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for authenticating with the TRBO API.
- The node sends HTTP DELETE requests to
https://trbo.link/api/profile/auto/link/{linkId}where{linkId}is the ID of the link to delete.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Link ID will result in an error from the API.
- Missing or incorrect API authentication credentials will cause authorization failures.
- Network connectivity problems can prevent successful communication with the TRBO API.
Error messages and resolutions:
- 404 Not Found: The specified Link ID does not exist. Verify the Link ID is correct.
- 401 Unauthorized: Authentication failed. Check that the API key credential is correctly configured.
- 400 Bad Request: The request was malformed. Ensure the Link ID is provided and properly formatted.
Links and References
- TRBO API Documentation (general reference for API endpoints)
- n8n documentation on HTTP Request Node for understanding how API calls are made within nodes