OpenapiMarketing
Flips draft/active/archived — the activation gate for sending, since only an…
Flips draft/active/archived — the activation gate for sending, since only an active sequence accepts enrollments.
POST /v1/marketing/sequences/{id}/status
| Address | https://api.hanzo.ai/v1/marketing/sequences/{id}/status |
| Method | POST |
| Operation | post_marketing_sequences_by_id_status |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Flips draft/active/archived — the activation gate for sending, since only an active sequence accepts enrollments. It does not touch enrollments already walking: archiving stops new ones, not in-flight ones.
Request
3 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the sequence id from the path. |
id | body | string | — | ID is the sequence id from the path. |
status | body | string | — | Status is draft, active or archived. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | SequenceStatus | ok |
200 body — 2 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
id | body | string | — | ID is the sequence id from the path. |
status | body | string | — | Status is draft, active or archived. |
Failure carries the platform error shape — see Errors.
Examples
hanzo marketing sequences status <id>import { Configuration, MarketingApi } from 'hanzoai';
const api = new MarketingApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postMarketingSequencesByIdStatus({ id: 'id', id: "<id>", status: "<status>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import MarketingApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = MarketingApi(client).post_marketing_sequences_by_id_status(id='id', id="<id>", status="<status>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.MarketingAPI.PostMarketingSequencesByIdStatus(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, marketing_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = marketing_api::post_marketing_sequences_by_id_status(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.MarketingApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new MarketingApi(client).postMarketingSequencesByIdStatus();curl -X POST https://api.hanzo.ai/v1/marketing/sequences/<id>/status \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": "<id>",
"status": "<status>"
}'The door reaches marketing through the marketing tool, which names its 35 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_marketing_audiences"
}
}
}'How is this guide?