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 update the processing status of a visual image generated from text-to-image operations. It is useful in workflows where you need to programmatically mark whether a specific visual asset (identified by project, scene, and visual IDs) is currently being processed or not. For example, after triggering an image generation task, you can use this node to set the processing flag to true and later set it to false once the operation completes.
Properties
| Name | Meaning |
|---|---|
| Authentication Method | Choose between using saved API credentials or entering an API key dynamically via expressions. |
| AdBlast Base URL | The base URL for the AdBlast API; required only if using dynamic API key authentication. |
| API Key | The API key for authenticating requests; required only if using dynamic API key authentication. |
| Project Id | The unique identifier of the project containing the visual image. |
| Scene Id | The identifier of the scene within the project related to the visual image. |
| Visual Id | The identifier of the specific visual image whose processing status is being updated. |
| Processing | Boolean flag indicating the processing status (true for processing, false otherwise). |
Output
The node outputs JSON data reflecting the result of the API call to update the processing status. This typically includes confirmation of the updated status or any relevant metadata returned by the AdBlast API. There is no binary output.
Dependencies
- Requires access to the AdBlast API.
- Needs either predefined saved API credentials or a dynamically provided API key.
- If using dynamic authentication, the user must provide the AdBlast base URL and API key.
- Proper network connectivity to the specified AdBlast API endpoint.
Troubleshooting
- Authentication errors: Ensure that the API key is valid and has sufficient permissions. If using dynamic API key input, verify the expression correctly resolves to a valid key.
- Invalid IDs: Confirm that the Project Id, Scene Id, and Visual Id are correct and exist in the AdBlast system.
- Network issues: Check connectivity to the AdBlast base URL and ensure no firewall or proxy blocks the request.
- API errors: Review the response message for details; common issues include rate limiting or malformed requests.
- Missing required properties: All required fields must be filled; missing Project Id, Scene Id, Visual Id, or Processing status will cause failures.
Links and References
- AdBlast API Documentation (base URL and API reference)
- n8n documentation on HTTP Request Node for understanding API integrations and authentication methods