---
title: "Path session user status updated"
method: POST
path: "path.session.user.status.updated"
tags: ["Path"]
---

# Path session user status updated

`POST path.session.user.status.updated` (webhook)

Sent to your endpoint when a learner's status in a path session changes. This event is emitted once per status transition (e.g. onTime → late, onTime → successful). It is also emitted the first time a status is computed for a learner after enrollment. Each status change results from a tracking recalculation triggered by learner activity or other platform processes — for example, when a session opens or when a mandatory step is added to a path. One recalculation may affect multiple learners at once, producing bursts of webhook events. See our Webhook processing best practices guide (https://360learning.readme.io/docs/webhooks-processing-best-practices).

## Headers

- `webhook-signature` string, required
- `webhook-id` string, required
- `webhook-timestamp` string, required

## Payload

- object
  - `type` 'path.session.user.status.updated', required — The type of the event.
  - `timestamp` integer, required — The date and time when the event was triggered in your platform, in the Unix epoch format (number of milliseconds that have elapsed since January 1, 1970).
  - `data` UserPathSessionStatusUpdatedDTO, required
    - `userId` string, ObjectId, required — The unique ID of the learner.
    - `pathId` string, ObjectId, required — The unique ID of the path.
    - `sessionId` string, ObjectId, required — The unique ID of the path session.
    - `enrollmentId` string, ObjectId, required — The unique ID of the enrollment.
    - `status` 'awaitingCorrection' | 'late' | 'notEnrolled' | 'notYetStarted' | 'onTime' | 'sessionNotOpened' | 'successful' | 'toRetake' | 'unsuccessful', required — The detailed status of the learner on the path session.
    - `updatedAt` string, date-time, required — The date and time when the status changed, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).

## Acknowledgement `2XX`

The event is considered as accepted for any 2xx response code.

## Other responses

- `default` — The event is considered as rejected for any other response code. The event emission will be retried later.

---

[API](https://skmtc.dev/360learning/apis/webhook-api.md) · [All operations](https://skmtc.dev/360learning/apis/webhook-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/360learning/webhook-api/revisions/18374878903d/schema)
