Actions29
Overview
This node integrates with the BookedIn platform to manage and automate various marketing and sales-related entities such as agents, leads, lists, strategies, campaigns, and human messaging. Specifically, for the Strategy - Create operation, it allows users to create a new strategy by providing a complete strategy configuration in JSON format.
Use cases include:
- Defining multi-stage marketing or sales strategies programmatically.
- Automating the creation of complex strategies that can later be executed against leads.
- Integrating strategy management into broader workflows within n8n.
For example, you might use this node to create a new outreach strategy with multiple stages (e.g., email sequence, follow-up calls) defined in JSON, which can then be applied to lead lists or campaigns.
Properties
| Name | Meaning |
|---|---|
| Strategy Configuration | Complete strategy configuration as JSON including fields like name, description, stages, etc. |
The property expects a JSON object describing the entire strategy structure. This includes at least the strategy's name, description, and an array of stages defining the workflow.
Example value:
{
"name": "My Strategy",
"description": "Strategy description",
"stages": []
}
Output
The node outputs the response from the BookedIn API after creating the strategy. The output is a JSON object representing the newly created strategy resource, typically including its unique ID, name, description, stages, timestamps, and other metadata as returned by the API.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the BookedIn API.
- The node makes HTTP requests to
https://api.bookedin.ai/api/v1/strategies/endpoint. - Proper network connectivity to the BookedIn API service is necessary.
- The user must provide valid JSON for the strategy configuration.
Troubleshooting
- Invalid JSON format in strategy configuration: If the provided JSON is malformed, the node will throw an error. Ensure the JSON is correctly formatted before running.
- API authentication errors: If the API key is missing or invalid, requests will fail. Verify that the API key credential is configured properly.
- Network issues: Connectivity problems to the BookedIn API endpoint will cause failures.
- Missing required fields: The strategy configuration must include at least a name and stages array; otherwise, the API may reject the request.
Links and References
- BookedIn API Documentation (general reference for API endpoints)
- n8n documentation on HTTP Request Authentication for setting up credentials