curl --request POST \
--url https://apix.spotzee.com/api/client/journeys/{journeyId}/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entrance_id": 2,
"user": {
"external_id": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"device_token": "<string>",
"timezone": "<string>",
"locale": "<string>"
}
}
'{
"success": true
}Manually inserts a contact into a journey at a specific entrance step. Useful for ad-hoc triggers and back-filling missed entries.
curl --request POST \
--url https://apix.spotzee.com/api/client/journeys/{journeyId}/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entrance_id": 2,
"user": {
"external_id": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"device_token": "<string>",
"timezone": "<string>",
"locale": "<string>"
}
}
'{
"success": true
}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.
Numeric journey identifier.
33
Manually trigger a journey entrance for a single contact.
Identifier of the journey entrance step to enter the contact at.
x >= 1The trigger was queued.
Confirmation that the entrance was queued.
Was this page helpful?