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 finalize the upload of a visual video scene. It is designed to be used after uploading video data to a storage service (such as S3M) and receiving an upload UUID, CDN URL, and relative path from that service. The node sends these details along with project, scene, and visual identifiers to the AdBlast API to complete the upload process.
Typical use cases include:
- Finalizing video uploads in automated video production workflows.
- Integrating video asset management systems with AdBlast for further processing or publishing.
- Automating the confirmation step after video content has been uploaded to cloud storage.
For example, after uploading a video scene to S3M and obtaining the upload metadata, this node can be used to notify AdBlast that the upload is complete and ready for further processing.
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 if using dynamic API key authentication). |
| API Key | The API key for authenticating with AdBlast, can be set dynamically using expressions. |
| Project Id | The unique identifier of the project within AdBlast. |
| Scene Id | The identifier of the specific scene being finalized. |
| Visual Id | The identifier of the visual video associated with the scene. |
| Uuid | The upload UUID returned from the S3M finalize response, used to identify the upload session. |
| Cdn Url | The CDN URL provided by S3M after finalizing the upload, pointing to the uploaded content. |
| Path | The relative path from the S3M finalize response indicating the location of the uploaded file. |
Output
The node outputs JSON data representing the response from the AdBlast API after finalizing the scene visual video upload. This typically includes confirmation details about the finalized upload, such as status or metadata related to the visual video.
If the node handles binary data, it would relate to the video content or associated files, but based on the provided code and properties, the output focuses on JSON responses confirming the upload finalization.
Dependencies
- Requires access to the AdBlast API endpoint, which may be configured via a base URL.
- Requires an API key credential for authentication, either predefined in n8n or provided dynamically.
- Depends on prior successful upload to a storage service (e.g., S3M) that provides the UUID, CDN URL, and path needed to finalize the upload.
Troubleshooting
- Authentication errors: Ensure the API key is valid and correctly configured, whether using saved credentials or dynamic input.
- Invalid or missing upload UUID, CDN URL, or path: These must come from a successful upload finalize response from the storage service; verify that these values are correctly passed into the node.
- Incorrect project, scene, or visual IDs: Confirm these identifiers exist and are correct in the AdBlast system.
- Network or API endpoint issues: Verify the base URL is reachable and correct, especially when using dynamic URLs.
Common error messages might include unauthorized access, resource not found, or bad request due to missing parameters. Resolving these usually involves checking credentials, input parameters, and API endpoint configuration.
Links and References
- AdBlast API Documentation (assumed base URL)
- n8n documentation on API integrations for general guidance on setting up API nodes