AdBlast icon

AdBlast

Interact with AdBlast API

Actions56

Overview

This node allows users to update the title of a project in the AdBlast platform via its API. It is useful when you want to programmatically rename projects, for example, to reflect changes in project scope, status, or content without manually editing them in the AdBlast UI.

Typical use cases include:

  • Automatically updating project titles based on external triggers or workflows.
  • Synchronizing project names with other systems or databases.
  • Renaming projects as part of batch processing or migration scripts.

Properties

Name Meaning
Authentication Method Choose how to authenticate API requests: either using saved credentials ("Predefined Credentials") or by entering an API key dynamically at runtime ("Dynamic API Key").
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 "Dynamic API Key" method is selected. Can be set using expressions.
Project Id The unique identifier of the project whose title you want to update.
Title The new title string to assign to the specified project.

Output

The node outputs JSON data representing the response from the AdBlast API after updating the project title. This typically includes confirmation details such as the updated project information or status messages.

No binary data output is produced by this node.

Dependencies

  • Requires access to the AdBlast API.
  • Needs an API key credential, either predefined in n8n or provided dynamically.
  • The node uses standard HTTP headers including Authorization with a Bearer token.
  • The base URL defaults to https://dev.adblast.ai but can be customized if needed.

Troubleshooting

  • Authentication errors: Ensure that the API key is valid and has sufficient permissions to update projects.
  • Invalid Project Id: Verify that the project ID exists and is correctly formatted.
  • Network issues: Confirm that the base URL is reachable and correct, especially if using a custom URL.
  • API rate limits: If many updates are performed rapidly, the API might throttle requests; consider adding delays or retries.
  • Error responses from API: Check the returned error message for details; common issues include missing required fields or invalid input formats.

Links and References

Discussion