메인 콘텐츠로 건너뛰기
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
}
주의 사항HTTP API를 이용한 유저 여정 진입의 경우, 유저 여정의 진입 시점 유형이 API 기반 진입으로 설정되어있는 경우에만 사용 가능합니다.

Authorizations

Authorization
string
header
required

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

Path Parameters

projectId
string
required

프로젝트 ID

userJourneyId
string
required

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

Body

application/json
users
object[]
required

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

Response

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

code
integer
success
boolean
error
string | null