AdBlast icon

AdBlast

Interact with AdBlast API

Actions56

Overview

This node integrates with the AdBlast API to finalize the upload of a character image. It is designed for workflows where users upload character images to a storage service (like S3) and then need to confirm or finalize that upload via the AdBlast platform. This finalization step typically involves sending metadata such as UUID, CDN URL, and relative path obtained from a prior upload response.

Practical scenarios include:

  • Game development pipelines where character assets are uploaded and registered.
  • Animation or media projects managing character image assets.
  • Any system automating asset uploads to AdBlast for further processing or distribution.

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 of the AdBlast API; required if using dynamic API key authentication.
API Key The API key for authenticating requests; used when dynamic API key authentication is selected.
Project Id The unique identifier of the project within AdBlast where the character belongs.
Character Id The unique identifier of the character whose image upload is being finalized.
Uuid The upload UUID returned from the S3M finalize response, identifying the specific upload session.
Cdn Url The CDN URL from the S3M finalize response pointing to the uploaded image location.
Path The relative path from the S3M finalize response indicating the file location in storage.

Output

The node outputs JSON data representing the response from the AdBlast API after finalizing the character image upload. This typically includes confirmation details about the finalized upload, such as status, identifiers, or metadata related to the character image.

There is no indication that this node outputs binary data.

Dependencies

  • Requires access to the AdBlast API endpoint.
  • Needs either predefined API credentials stored securely in n8n or a dynamically provided API key.
  • The user must provide valid project and character IDs along with upload metadata (UUID, CDN URL, path) obtained from a prior upload process.
  • No additional external libraries beyond those bundled with n8n and the included OpenAPI client are required.

Troubleshooting

  • Authentication errors: Ensure the API key or credentials are correct and have sufficient permissions.
  • Invalid project or character IDs: Verify that the IDs correspond to existing entities in the AdBlast system.
  • Missing or incorrect upload metadata (UUID, CDN URL, path): These must come from a successful prior upload response; otherwise, the finalize request will fail.
  • Network or URL issues: If using a dynamic base URL, ensure it is correctly formatted and reachable.
  • Common error messages will likely relate to authorization failures, resource not found, or bad request due to missing parameters. Double-check all required fields and their values.

Links and References

Discussion