List view
Select Session Journey from the left menu of the dashboard to open the list of submissions (sessions). Each row is one session (the verification progress record for a single submission), and clicking a row navigates to that session’s detail view.Columns
Submission ID is — is a session that stopped at the stage before a submission was created (Step1 not yet passed). For when the submission is created, see the SUBMISSION_CREATED event in the event reference.Status values
The Status column in the list shows the overall progress of the session as a colored chip.DROPPED session is a case where the user left without finishing verification, so the email, User ID, and Submission ID are often empty (—) and the last event often ends with a pre-drop signal such as PAGE_HIDDEN or PAGE_VISIBLE. Use this for analyzing drop-off points.
Session journey list — status chips (COMPLETED, DROPPED, etc.)
Search & filter
At the top of the list, you can find sessions using the following conditions.- Text search — Select the target field (e.g.,
Session ID) and enter a search term. - Status — Filter by
COMPLETED,IN_PROGRESS,DROPPED,ERROR, or all. - Date range — Specify the lookup period based on the creation date.
- Items per page — Set the number of rows to display on one page (e.g., 20).
Detail view
Clicking a session in the list opens that session’s detail view. At the top, a data expiration banner is shown alongside the session status chip.
Session detail — status chip, expiration banner, summary card, event timeline
2026.07.24 10:12 Expires At · D-30) indicates the expiration date and remaining days (D-day) for which this session’s detail records are retained. After expiration, detail event records can no longer be viewed, so if long-term preservation is needed, check before expiration.The retention period is determined by the Session Journey Data Retention Period (default 30 days) under Project Settings > System Operations.Summary card
The summary card at the top of the detail view gathers and displays the session’s key information.Event timeline
Below the summary card is the event timeline, which lists all events that occurred in this session in chronological order. The total number of events (e.g.,총 44개 이벤트) is shown next to the section title.
- FE / BE filter chips — You can filter by source with the
FE 이벤트andBE 이벤트chips. - Each event’s composition — Made up of the recorded time, event name,
FE/BEbadge, metadata (key-value), and a더 보기toggle. - metadata — Additional information per event. For example:
projectId,pageUrl,method,durationMs,allPass,errorCode,statusCode,kycStatus,reason. Events without metadata are shown as에러데이터 없음.
Error cause tracing example
This is a typical flow for tracing the cause in a session whose status isERROR. (e.g., latest error code = processed_submission-approved)
Check the latest error code on the summary card
ERROR, the summary card’s latest error code shows processed_submission-approved. From the code’s form, you can guess the primary cause — it is an error related to an “already processed (approved) submission.”Find the result event in the timeline
STEP2_RESULT. Its metadata records errorCode: processed_submission and statusCode: 400, indicating that the server did not process this submission normally and responded with 400.Confirm with the error page entry event
ERROR_PAGE_VIEWED event is recorded with the path /error-page/processed_submission-approved. This means the user deviated from the normal flow and was forced out to the error page.Interpret the cause