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 integrates with the AdBlast API to retrieve all projects associated with the authenticated user. It is useful for workflows that need to list or process multiple projects from AdBlast, such as project management automation, reporting, or synchronization tasks.
A practical example would be a marketing team automating the retrieval of all their active campaigns (projects) from AdBlast to generate performance reports or trigger follow-up actions based on project status.
Properties
| Name | Meaning |
|---|---|
| Authentication Method | Choose how to authenticate: "Predefined Credentials" uses saved API credentials; "Dynamic API Key" allows entering the API key at runtime using expressions. |
| 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 authentication when using Dynamic API Key method. Can be set dynamically via expressions. |
Output
The node outputs JSON data representing the list of projects retrieved from the AdBlast API for the authenticated user. Each item in the output corresponds to a project object as returned by the API.
No binary data output is produced by this node.
Dependencies
- Requires access to the AdBlast API.
- Needs either predefined API credentials stored in n8n or a dynamic API key provided at runtime.
- The node expects the API to respond with JSON data.
- No additional external dependencies beyond standard HTTP requests.
Troubleshooting
- Authentication errors: If the API key is invalid or missing, the node will fail to authenticate. Ensure the correct API key is provided either via saved credentials or dynamically.
- Incorrect Base URL: When using dynamic authentication, an incorrect or unreachable base URL will cause request failures. Verify the URL is correct and accessible.
- API rate limits or permissions: If the user’s API key lacks permission to list projects or has exceeded rate limits, the node may return errors. Check API key scopes and usage limits.
- Empty results: If no projects are returned, verify that the authenticated user actually has projects in AdBlast.
Links and References
- AdBlast API Documentation (assumed based on default URL)
- n8n documentation on HTTP Request Node for understanding API integrations
- General API authentication best practices