BookedIn icon

BookedIn

Interact with BookedIn AI agents, leads, campaigns, strategies, lists, and human messaging

Overview

This node allows you to manage and interact with "strategies" within the BookedIn platform via its API. Specifically, the Delete operation for the Strategy resource enables you to remove a strategy by its unique ID. This is useful when you want to clean up unused or obsolete strategies from your account.

Common scenarios include:

  • Automating cleanup of outdated marketing or sales strategies.
  • Managing lifecycle of strategies programmatically as part of a larger workflow.
  • Integrating strategy management into broader automation pipelines.

Example: You have a strategy identified by strat_1234567890 that is no longer needed. Using this node’s delete operation, you can remove it automatically without manual intervention in the BookedIn dashboard.

Properties

Name Meaning
Strategy ID The unique identifier of the strategy to delete (e.g., strat_1234567890). This property is required.

Output

The output JSON contains the response from the BookedIn API after attempting to delete the specified strategy. Typically, this will be an empty object or confirmation message indicating successful deletion. If the deletion fails, the output will contain error details.

No binary data is produced by this operation.

Dependencies

  • Requires an active API key credential for authenticating requests to the BookedIn API.
  • The node makes HTTP DELETE requests to the endpoint:
    https://api.bookedin.ai/api/v1/strategies/{strategyId}
  • Ensure the API key has sufficient permissions to delete strategies.
  • No additional environment variables are required beyond the configured API authentication.

Troubleshooting

  • Error: Invalid JSON format in strategy configuration — Not applicable for delete but may appear if other operations are mixed in the workflow.
  • HTTP 404 Not Found — The provided Strategy ID does not exist. Verify the ID is correct.
  • HTTP 401 Unauthorized — Authentication failed. Check that the API key credential is valid and properly configured.
  • HTTP 403 Forbidden — Insufficient permissions to delete the strategy. Confirm the API key has delete rights.
  • Network errors/timeouts — Check network connectivity and API availability.

To resolve errors:

  • Double-check the Strategy ID input.
  • Validate API credentials.
  • Review API permissions.
  • Retry on transient network issues.

Links and References

Discussion