Create an outreach cadence
https://myagentmail.com/cadencesA cadence is a server-side outreach sequence — an ordered list of steps (LinkedIn invite → wait → DM → email → ...) that fire automatically per enrollment with branching on real-world events (invite accepted, lead replied).
The runtime is on MyAgentMail's side. Customer apps call
POST /v1/cadences/:id/enrollments to enroll a lead and receive
webhook events as the cadence progresses.
Request body
Content-Type: application/json
namerequired string | |
descriptionstring | |
businessHoursOnlyboolean | default: true |
exitOnReplyboolean | default: true |
exitOnUnsubscribeboolean | default: true |
dailySendCapinteger | default: 50 |
webhookUrlstring | format: uri |
stepsobject[] | Optional inline step list. You can also PATCH /v1/cadences/:id/steps later. |
kindrequired "linkedin_connect" | "linkedin_message" | "email" | "wait" | enum: "linkedin_connect" | "linkedin_message" | "email" | "wait" |
delayDaysrequired number | Days after the previous step's completion. 0 = fire on enrollment for step 0; 0.25 = 6 hours. |
condition"after_accept" | "no_reply_to_prev" | "never_replied" | enum: "after_accept" | "no_reply_to_prev" | "never_replied" |
draftStrategy"static" | "webhook" | How the runner gets the rendered content for this step. - `static` — Use `staticBody` (+ `staticSubject` for email) as the message verbatim, with `{{name}}`, `{{first_name}}`, `{{email}}` token substitution. Predictable; zero external deps. - `webhook` — At fire-time, the runner POSTs a `cadence.step.draft.requested` event to the cadence's `webhookUrl` and waits up to 30s for a JSON response of `{ body, subject?, skip?, defer? }`. The customer's app brings the actual content with its own business context, its own LLM if it wants one, its own thread memory. MAM never generates copy on the customer's behalf. The legacy `"ai"` value was REMOVED 2026-05-19 — MAM no longer drafts content server-side. New cadences passing `"ai"` get a `VALIDATION_ERROR` with a migration hint pointing here. Pre-existing rows with `"ai"` will surface `AI_STRATEGY_REMOVED` as the per-enrollment `lastError.code` when the runner tries to fire them — fix by updating the step to `static` (with `staticBody`) or `webhook` (with the cadence's `webhookUrl` set). enum: "static" | "webhook" default: "static" |
staticSubjectstring | Email-only. The literal subject line for static-strategy email steps. Supports `{{name}}` / `{{first_name}}` / `{{email}}` tokens. |
staticBodystring | The literal message body for static-strategy steps. Supports `{{name}}` / `{{first_name}}` / `{{email}}` tokens. Required when `draftStrategy: "static"`. |
promptHintstring | Free-text hint for the step. MAM does not read this — it's passed through verbatim in the `cadence.step.draft.requested` webhook payload (`step.promptHint`) so the customer's draft handler can use it as per-step context. Ignored by static strategy. |
notesstring | Operator notes — not sent anywhere, just stored for the customer's reference. |
Responses
okboolean | |
cadenceobject | |
idstring | format: uuid |
namestring | |
descriptionstring | |
enabledboolean | |
businessHoursOnlyboolean | |
exitOnReplyboolean | |
exitOnUnsubscribeboolean | |
dailySendCapinteger | |
webhookUrlstring | |
webhookSecretstring | HMAC secret for X-MyAgentMail-Signature. |
createdAtstring | format: date-time |
updatedAtstring | format: date-time |
stepsany[] |
Authentication
Send your API key in the X-API-Key header (or Authorization: Bearer <key>). Any prefix accepted by this endpoint — tk_, wk_, ak_, or sa_ — is documented in the key prefix table.