OpenapiMarketing
Returns the org's drip sequences, most recently updated first.
Returns the org's drip sequences, most recently updated first.
GET /v1/marketing/sequences
| Address | https://api.hanzo.ai/v1/marketing/sequences |
| Method | GET |
| Operation | get_marketing_sequences |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the org's drip sequences, most recently updated first.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | — | Limit caps the rows returned; 0 means 200 and nothing above 1000 is honoured. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | SequenceList | ok |
200 body — 6 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | Sequence[] | — | Data is the page; an empty array when the org has no sequence. |
data[].createdAt | body | integer | — | CreatedAt is unix seconds when the sequence was registered, server-assigned and never rewritten. |
data[].id | body | string | — | ID is the server-assigned sequence id ("seq_" + 128 random bits). |
data[].name | body | string | — | Name is the sequence's label. |
data[].status | body | string | — | Status is the lifecycle: draft, active or archived. |
data[].updatedAt | body | integer | — | UpdatedAt is unix seconds of the last status flip, server-assigned, and the key the sequence list is ordered by (newest first). |
Failure carries the platform error shape — see Errors.
Examples
hanzo marketing sequences listimport { Configuration, MarketingApi } from 'hanzoai';
const api = new MarketingApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getMarketingSequences();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).get_marketing_sequences()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.MarketingAPI.GetMarketingSequences(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::get_marketing_sequences(&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).getMarketingSequences();curl https://api.hanzo.ai/v1/marketing/sequences \
-H "Authorization: Bearer $HANZO_API_KEY"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?