AdBlast icon

AdBlast

Interact with AdBlast API

Actions56

Overview

This node allows users to delete an environment within a specified project in the AdBlast platform via its API. It is useful for automating the management of environments, such as removing outdated or unused environments programmatically. For example, a marketing team could integrate this node into their workflow to clean up test environments after campaigns conclude, ensuring only active environments remain.

Properties

Name Meaning
Authentication Method Choose between using saved API credentials ("Predefined Credentials") or entering an API key dynamically ("Dynamic API Key").
AdBlast Base URL The base URL of the AdBlast API (required if using dynamic API key authentication).
API Key The API key for authenticating with the AdBlast API (required if using dynamic API key authentication).
Project Id The unique identifier of the project containing the environment to delete.
Environment Id The unique identifier of the environment to be deleted.

Output

The node outputs JSON data representing the response from the AdBlast API after attempting to delete the specified environment. This typically includes confirmation of deletion or error details if the operation failed. The output does not include binary data.

Dependencies

  • Requires access to the AdBlast API.
  • Needs either predefined API credentials stored securely in n8n or a dynamically provided API key.
  • If using dynamic authentication, the user must provide the correct base URL and API key.
  • Proper permissions on the AdBlast API to delete environments are necessary.

Troubleshooting

  • Common Issues:

    • Invalid or missing API key leading to authentication failures.
    • Incorrect project or environment IDs causing "not found" errors.
    • Insufficient permissions to delete environments.
    • Network connectivity issues to the AdBlast API endpoint.
  • Error Messages & Resolutions:

    • 401 Unauthorized: Check that the API key is valid and has the required permissions.
    • 404 Not Found: Verify that the project ID and environment ID are correct and exist.
    • 400 Bad Request: Ensure all required parameters are provided and correctly formatted.
    • Network Errors: Confirm the base URL is reachable and there are no firewall restrictions.

Links and References

Discussion