curl --request POST \
--url https://apix.spotzee.com/api/client/journeys \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"status": "draft"
}
'{
"id": 33,
"project_id": 123,
"name": "<string>",
"status": "draft",
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"stats": {},
"stats_at": "<string>"
}Creates a new journey. Use PUT /:journeyId/steps to populate the step graph.
curl --request POST \
--url https://apix.spotzee.com/api/client/journeys \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"status": "draft"
}
'{
"id": 33,
"project_id": 123,
"name": "<string>",
"status": "draft",
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"stats": {},
"stats_at": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.spotzee.com/llms.txt
Use this file to discover all available pages before exploring further.
Project-scoped secret API key (sk_…). Pass in the Authorization: Bearer <key> header. Grants access to the project the key was issued for.
Create a new journey. Set status: "live" to begin accepting entrances immediately.
The newly created journey.
A multi-step automation triggered by an event or a contact’s entry into a target list.
Numeric journey identifier.
33
draft is a work-in-progress journey not yet active; live is currently accepting entries; off is paused — no new entrances are processed.
draft, live, off Time stats were last refreshed.
Was this page helpful?