Nexrender icon

Nexrender

Interact with Nexrender Cloud API

Actions14

Overview

This node interacts with the Nexrender Cloud API to manage templates among other resources. Specifically, the "Delete" operation for the "Template" resource allows users to delete a template by its ID. This is useful in scenarios where you want to programmatically remove unused or outdated templates from your Nexrender account to keep your workspace clean and organized.

Practical example: If you have automated workflows that generate video render templates and after some time those templates are no longer needed, this node can be used to delete them automatically based on their IDs.

Properties

Name Meaning
ID The unique identifier of the template to delete. This is required to specify which template should be removed.

Output

The output JSON contains the response from the Nexrender API after attempting to delete the specified template. Typically, it will include a success confirmation or details about the deletion result. If the API does not return any content, the node outputs { success: true } to indicate the deletion was successful.

Example output:

{
  "success": true
}

Dependencies

  • Requires an API key credential for authenticating with the Nexrender Cloud API.
  • The base URL for the API is configurable via credentials (defaulting to https://api.nexrender.com/api/v2).
  • The node uses HTTP DELETE requests to the /templates/{templateId} endpoint.

Troubleshooting

  • Common issues:

    • Invalid or missing Template ID: Ensure the "ID" property is correctly set and corresponds to an existing template.
    • Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
    • Network or connectivity problems: Check internet connection and API availability.
  • Error messages:

    • "HTTP 404: Not Found" — The specified template ID does not exist. Confirm the ID is correct.
    • "HTTP 401: Unauthorized" — Authentication failed. Recheck the API key credential.
    • Timeout or request failures — May require retrying or checking network status.

Links and References

Discussion