Actions56
- Health Actions
- Project Actions
- Score Actions
- Characters Actions
- Environments Actions
- Scenes Actions
- Visuals Actions
- Visual Voiceover Actions
- Visual Image Actions
- Visual Video Actions
- Visual Sound Actions
- Video Actions
Overview
This node allows you to delete a project from the AdBlast platform via its API. It is useful in automation workflows where you need to programmatically remove projects, for example, cleaning up test projects after deployment, or managing project lifecycle based on external triggers.
Typical use cases include:
- Automatically deleting obsolete or completed projects.
- Integrating project deletion into CI/CD pipelines.
- Managing projects dynamically based on user input or other system events.
Properties
| Name | Meaning |
|---|---|
| Authentication Method | Choose how to authenticate with the AdBlast API: either using saved credentials ("Predefined Credentials") or by providing an API key dynamically at runtime ("Dynamic API Key"). |
| AdBlast Base URL | The base URL of the AdBlast API endpoint. Required only if using dynamic API key authentication. Defaults to https://dev.adblast.ai. |
| API Key | The API key used for authenticating requests when using dynamic API key authentication. Can be set using expressions. |
| Project Id | The unique identifier of the project to delete. |
Output
The node outputs JSON data representing the response from the AdBlast API after attempting to delete the specified project. This typically includes confirmation of deletion or error details if the operation failed.
No binary data output is produced by this node.
Dependencies
- Requires access to the AdBlast API.
- Requires either saved API credentials or a dynamically provided API key.
- The node expects the base URL and API key to be correctly configured depending on the chosen authentication method.
Troubleshooting
- Authentication errors: If the API key is invalid or missing, the node will fail to authenticate. Ensure that the correct API key is provided either via saved credentials or dynamically.
- Invalid Project Id: Providing a non-existent or malformed project ID will result in an error from the API. Verify the project ID before running the node.
- Network issues: Connectivity problems to the AdBlast API base URL can cause request failures. Confirm network access and correct base URL configuration.
- Permission issues: The API key must have sufficient permissions to delete projects; otherwise, the API will reject the request.
Links and References
- AdBlast API Documentation (assumed base URL for API reference)
- n8n documentation on HTTP Request Node for understanding API interactions in workflows