Actions14
Overview
This node interacts with the Nexrender Cloud API to manage templates among other resources. Specifically, for the Template Delete operation, it deletes a template identified by its ID from the Nexrender service.
Common scenarios where this node is beneficial include:
- Automating cleanup of unused or outdated templates in Nexrender.
- Integrating template lifecycle management into larger workflows.
- Programmatically managing templates without manual intervention via the Nexrender dashboard.
Practical example:
- A user has a workflow that generates video projects using Nexrender templates. After a project completes, the workflow deletes the associated template to keep the Nexrender account tidy and avoid clutter.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the template to delete. This is required to specify which template will be removed from Nexrender. |
Output
The output JSON contains the response from the Nexrender API after attempting to delete the specified template. Typically, this will be an object indicating success or failure of the deletion request. If the API does not return a body, the node outputs { success: true } to indicate the deletion was successful.
Example output JSON:
{
"success": true
}
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Nexrender Cloud API.
- The node expects the base URL of the Nexrender API to be configured in the credentials.
- Network connectivity to the Nexrender API endpoint is necessary.
Troubleshooting
Error: Template ID missing or invalid
Ensure the "ID" property is provided and correctly references an existing template.API request failures (e.g., 404 Not Found)
This may occur if the template ID does not exist or has already been deleted. Verify the template ID is correct.Authentication errors
Confirm that the API key credential is valid and has sufficient permissions to delete templates.Timeouts or network issues
Check network connectivity and Nexrender service status.
If the node throws an error message containing HTTP status codes, use the code and message to diagnose the issue (e.g., 401 Unauthorized means authentication failed).