Skip to main content
POST
/
content
/
nurture-sequences
/
{id}
/
steps
/
create
Add nurture sequence step
curl --request POST \
  --url https://ai.wisepilot.app/api/v1/content/nurture-sequences/{id}/steps/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel": "<string>",
  "delay_days": 1,
  "delay_from": "<string>",
  "goal": "<string>",
  "subject": "<string>",
  "body": "<string>"
}
'
{
  "success": true,
  "data": {
    "stepNumber": 123,
    "channel": "<string>",
    "delayDays": 123,
    "delayFrom": "<string>",
    "goal": "<string>",
    "isActive": true,
    "stepAssetId": "<string>",
    "stepAssetTitle": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with cr_ (e.g. cr_a1b2c3...)

Path Parameters

id
string
required

Sequence content_id

Body

application/json
channel
string
required
delay_days
integer
default:1
delay_from
string
goal
string
subject
string
body
string

Response

Step added

success
boolean
required
data
object