메인 콘텐츠로 건너뛰기
POST
/
projects
/
{projectId}
/
user-journeys
/
{userJourneyId}
/
enter
trigger-user-journey
curl --request POST \
  --url https://api.notifly.tech/projects/{projectId}/user-journeys/{userJourneyId}/enter \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "users": [
    {
      "userId": "alice"
    }
  ]
}
'
{
  "code": 200,
  "success": true,
  "error": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.notifly.tech/llms.txt

Use this file to discover all available pages before exploring further.

주의 사항HTTP API를 이용한 유저 여정 진입의 경우, 유저 여정의 진입 시점 유형이 API 기반 진입으로 설정되어있는 경우에만 사용 가능합니다.

인증

Authorization
string
header
필수

POST /authenticate로 발급받은 인증 토큰

경로 매개변수

projectId
string
필수

프로젝트 ID

userJourneyId
string
필수

유저 여정 ID (콘솔에서 확인)

본문

application/json
users
object[]
필수

유저 여정에 진입할 유저 목록 (최대 1,000명)

응답

성공적인 유저 여정 트리거입니다

code
integer
success
boolean
error
string | null