---
title: "Replace all steps"
method: PUT
path: "/api/v2/paths/{pathId}/steps"
tags: ["Paths"]
---

# Replace all steps

`PUT /api/v2/paths/{pathId}/steps`

> 🔑
>
> Required OAuth scope: `paths:write`.

Replaces all steps in the given path with the provided ones. Steps not included are removed.

## Path parameters

- `pathId` string, ObjectId, required

## Headers

- `360-api-version` 'v2.0', required

## Request body

- UpdateStepsBody
  - `steps` union[], required — The ordered list of steps to replace the existing ones.
    - union
      - AssessmentStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'assessment', required — The type of the step.
        - `options` AssessmentStepOptionsDTO, required
          - `isExamination` boolean, required — True if learners must pass the assessment to receive a certificate; false otherwise. A certificate must be included in the path to activate this option.
          - `minScore` number — The minimum score required to pass the assessment, expressed as a percentage. If set, the assessor will validate progress based on this score rather than using a fail/pass validation. If not set, the assessor will use a fail/pass validation.
      - ClassroomStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'classroom', required — The type of the step.
        - `options` ClassroomStepOptionsDTO, required
          - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
          - `relativeDate` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
          - `autoRegistration` boolean, required — True if newly enrolled learners should be automatically registered in the next open classroom slot; false otherwise.
          - `selfRegistration` SelfRegistrationOptionDTO, required
            - `enabled` boolean, required — True if learners can self-register for any available classroom slots until the event begins; false otherwise.
            - `delay` RelativeDateOptionDTO
              - …
          - `attendanceSheets` AttendanceSheetsOptionDTO
            - `unit` 'day' | 'slot', required — The frequency at which attendance sheets are generated for each classroom slot. Options are: - `slot`: Generates the specified number of attendance sheet per classroom slot. - `day`: Generates the specified number of attendance sheets per day within the classroom slot.
            - `number` number, required — The number of attendance sheets per `day` or `slot`.
      - CourseStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'course', required — The type of the step.
        - `options` union, required — The options for this step.
          - RegularCourseStepOptionsDTO
            - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
            - `relativeDate` RelativeDateOptionDTO
              - …
            - `showCorrection` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When answers to questions will be displayed. Options are: - `never`: Answers will not be displayed at any time. - `onAnswer`: Answers will be displayed immediately after the learner provides their response. - `onCompletion`: Answers will be displayed only after the learner has completed the course. - `onSuccess`: Answers will be displayed only after the learner completes the course and meets the success criteria.
            - `showForum` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When the forum will be displayed. Options are: - `never`: The forum will not be displayed at any time. - `onAnswer`: The forum will be displayed immediately after the learner provides their response. - `onCompletion`: The forum will be displayed only after the learner has completed the course. - `onSuccess`: The forum will be displayed only after the learner completes the course and meets the success criteria.
            - `timeLimit` TimeLimitOptionDTO
              - …
            - `minScore` number — The minimum score required to successfully complete the step. The score ranges from 0 to 100.
            - `attemptsLimit` number — The maximum number of attempts allowed for the step. The learner cannot retry the step once this limit is reached.
            - `availability` AvailabilityOptionDTO
              - …
          - PositioningQuizCourseStepOptionsDTO
            - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
            - `relativeDate` RelativeDateOptionDTO
              - …
            - `showCorrection` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When answers to questions will be displayed. Options are: - `never`: Answers will not be displayed at any time. - `onAnswer`: Answers will be displayed immediately after the learner provides their response. - `onCompletion`: Answers will be displayed only after the learner has completed the course. - `onSuccess`: Answers will be displayed only after the learner completes the course and meets the success criteria.
            - `showForum` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When the forum will be displayed. Options are: - `never`: The forum will not be displayed at any time. - `onAnswer`: The forum will be displayed immediately after the learner provides their response. - `onCompletion`: The forum will be displayed only after the learner has completed the course. - `onSuccess`: The forum will be displayed only after the learner completes the course and meets the success criteria.
            - `timeLimit` TimeLimitOptionDTO
              - …
            - `attemptsLimit` number, required — Must be 1 for a positioning quiz step.
            - `thresholds` ThresholdDTO[], required — The thresholds defined for this positioning quiz step.
              - …
        - `subtype` 'quiz' — The subtype of the step.
      - EmailStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'email', required — The type of the step.
        - `options` EmailStepOptionsDTO, required
          - `recipientType` 'learner' | 'manager', required — The role of users that will receive the message.
          - `scheduling` SchedulingOptionDTO
            - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
            - `relativity` number, required — The number of days from the triggering event to send the message.
            - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
            - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.
      - PathStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'path', required — The type of the step.
        - `options` PathStepOptionsDTO, required
          - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
          - `relativeDate` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
      - ProgramStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'program', required — The type of the step.
        - `options` ProgramStepOptionsDTO, required
          - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
          - `relativeDate` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
      - SlackMessageStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'slackMessage', required — The type of the step.
        - `options` MessageStepOptionsDTO, required
          - `recipientType` 'learner', required — The role of users that will receive the message.
          - `scheduling` SchedulingOptionDTO
            - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
            - `relativity` number, required — The number of days from the triggering event to send the message.
            - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
            - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.
      - TeamsMessageStepDTO
        - `_id` string, ObjectId, required — The unique ID of the step resource.
        - `type` 'teamsMessage', required — The type of the step.
        - `options` MessageStepOptionsDTO, required
          - `recipientType` 'learner', required — The role of users that will receive the message.
          - `scheduling` SchedulingOptionDTO
            - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
            - `relativity` number, required — The number of days from the triggering event to send the message.
            - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
            - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.

## Response `200`

Returns the updated steps.

- union[]
  - union
    - AssessmentStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'assessment', required — The type of the step.
      - `options` AssessmentStepOptionsDTO, required
        - `isExamination` boolean, required — True if learners must pass the assessment to receive a certificate; false otherwise. A certificate must be included in the path to activate this option.
        - `minScore` number — The minimum score required to pass the assessment, expressed as a percentage. If set, the assessor will validate progress based on this score rather than using a fail/pass validation. If not set, the assessor will use a fail/pass validation.
    - ClassroomStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'classroom', required — The type of the step.
      - `options` ClassroomStepOptionsDTO, required
        - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
        - `relativeDate` RelativeDateOptionDTO
          - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
          - `value` number, required — The numerical estimate of the duration.
        - `autoRegistration` boolean, required — True if newly enrolled learners should be automatically registered in the next open classroom slot; false otherwise.
        - `selfRegistration` SelfRegistrationOptionDTO, required
          - `enabled` boolean, required — True if learners can self-register for any available classroom slots until the event begins; false otherwise.
          - `delay` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
        - `attendanceSheets` AttendanceSheetsOptionDTO
          - `unit` 'day' | 'slot', required — The frequency at which attendance sheets are generated for each classroom slot. Options are: - `slot`: Generates the specified number of attendance sheet per classroom slot. - `day`: Generates the specified number of attendance sheets per day within the classroom slot.
          - `number` number, required — The number of attendance sheets per `day` or `slot`.
    - CourseStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'course', required — The type of the step.
      - `options` union, required — The options for this step.
        - RegularCourseStepOptionsDTO
          - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
          - `relativeDate` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
          - `showCorrection` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When answers to questions will be displayed. Options are: - `never`: Answers will not be displayed at any time. - `onAnswer`: Answers will be displayed immediately after the learner provides their response. - `onCompletion`: Answers will be displayed only after the learner has completed the course. - `onSuccess`: Answers will be displayed only after the learner completes the course and meets the success criteria.
          - `showForum` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When the forum will be displayed. Options are: - `never`: The forum will not be displayed at any time. - `onAnswer`: The forum will be displayed immediately after the learner provides their response. - `onCompletion`: The forum will be displayed only after the learner has completed the course. - `onSuccess`: The forum will be displayed only after the learner completes the course and meets the success criteria.
          - `timeLimit` TimeLimitOptionDTO
            - `mode` 'maxTime' | 'minTime', required — The time constraint option. Options are: - `maxTime`: Setting a maximum time limit will lock the course in its current state at the end of the defined time, and allow the learner to proceed to the next step. They cannot access the remaining activities. `minTime`: Setting a minimum time limit will prevent the learner from going to the next step until the end of the defined time, even if they've finished the course.
            - `value` number, required — The time limit in seconds.
          - `minScore` number — The minimum score required to successfully complete the step. The score ranges from 0 to 100.
          - `attemptsLimit` number — The maximum number of attempts allowed for the step. The learner cannot retry the step once this limit is reached.
          - `availability` AvailabilityOptionDTO
            - `mode` 'afterEnrollmentDate' | 'afterSessionStartDate', required — The event that triggers the start of the availability period.
            - `relativeDate` RelativeDateOptionDTO, required
              - …
        - PositioningQuizCourseStepOptionsDTO
          - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
          - `relativeDate` RelativeDateOptionDTO
            - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
            - `value` number, required — The numerical estimate of the duration.
          - `showCorrection` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When answers to questions will be displayed. Options are: - `never`: Answers will not be displayed at any time. - `onAnswer`: Answers will be displayed immediately after the learner provides their response. - `onCompletion`: Answers will be displayed only after the learner has completed the course. - `onSuccess`: Answers will be displayed only after the learner completes the course and meets the success criteria.
          - `showForum` 'never' | 'onAnswer' | 'onCompletion' | 'onSuccess', required — When the forum will be displayed. Options are: - `never`: The forum will not be displayed at any time. - `onAnswer`: The forum will be displayed immediately after the learner provides their response. - `onCompletion`: The forum will be displayed only after the learner has completed the course. - `onSuccess`: The forum will be displayed only after the learner completes the course and meets the success criteria.
          - `timeLimit` TimeLimitOptionDTO
            - `mode` 'maxTime' | 'minTime', required — The time constraint option. Options are: - `maxTime`: Setting a maximum time limit will lock the course in its current state at the end of the defined time, and allow the learner to proceed to the next step. They cannot access the remaining activities. `minTime`: Setting a minimum time limit will prevent the learner from going to the next step until the end of the defined time, even if they've finished the course.
            - `value` number, required — The time limit in seconds.
          - `attemptsLimit` number, required — Must be 1 for a positioning quiz step.
          - `thresholds` ThresholdDTO[], required — The thresholds defined for this positioning quiz step.
            - `thresholdValue` number, required — The minimum score needed to reach the threshold.
            - `waivedStepIds` string[], required — Array of step IDs waived when this threshold is reached.
      - `subtype` 'quiz' — The subtype of the step.
    - EmailStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'email', required — The type of the step.
      - `options` EmailStepOptionsDTO, required
        - `recipientType` 'learner' | 'manager', required — The role of users that will receive the message.
        - `scheduling` SchedulingOptionDTO
          - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
          - `relativity` number, required — The number of days from the triggering event to send the message.
          - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
          - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.
    - PathStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'path', required — The type of the step.
      - `options` PathStepOptionsDTO, required
        - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
        - `relativeDate` RelativeDateOptionDTO
          - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
          - `value` number, required — The numerical estimate of the duration.
    - ProgramStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'program', required — The type of the step.
      - `options` ProgramStepOptionsDTO, required
        - `optional` boolean, required — True if the step is optional to complete the path; false otherwise.
        - `relativeDate` RelativeDateOptionDTO
          - `unit` 'day' | 'month' | 'week', required — The unit of measurement for the duration.
          - `value` number, required — The numerical estimate of the duration.
    - SlackMessageStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'slackMessage', required — The type of the step.
      - `options` MessageStepOptionsDTO, required
        - `recipientType` 'learner', required — The role of users that will receive the message.
        - `scheduling` SchedulingOptionDTO
          - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
          - `relativity` number, required — The number of days from the triggering event to send the message.
          - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
          - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.
    - TeamsMessageStepDTO
      - `_id` string, ObjectId, required — The unique ID of the step resource.
      - `type` 'teamsMessage', required — The type of the step.
      - `options` MessageStepOptionsDTO, required
        - `recipientType` 'learner', required — The role of users that will receive the message.
        - `scheduling` SchedulingOptionDTO
          - `relativeTo` 'afterEnrollmentDate' | 'afterSessionStartDate' | 'beforeSessionStartDate', required — The event triggering the message scheduling. Options are: - `afterEnrollmentDate`: The message will be sent a specific number of days after the enrollment date. - `afterSessionStartDate`: The message will be sent a specific number of days after the session start date. - `beforeSessionStartDate`: The message will be sent a specific number of days before the session start date.
          - `relativity` number, required — The number of days from the triggering event to send the message.
          - `condition` 'completed' | 'notCompleted' | 'notSuccessful' | 'successful' — The path result required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Path results options are: - `completed`: The learner completed all steps in the path. - `notCompleted`: The learner has at least one uncompleted step in the path. - `notSuccessful`: The learner has at least one uncompleted step in the path, or has not reached the minimum score for at least one mandatory step. - `successful`: The learner has completed all mandatory steps in the path, reached the minimum score in all mandatory courses that have one, and completed them in less than the maximum time limit, or more than the minimum time limit.
          - `conditionOnDetailedStatus` string[] — The detailed path statuses required to trigger the message. Note that this parameter only applies to the following triggering events: `afterEnrollmentDate` and `afterSessionStartDate`. Detailed status options include: - `awaitingCorrection`: The learner is awaiting correction of at least one step in the path. - `late`: The learner is late on the path based on the relative date deadline. - `notYetStarted`: The learner has not yet started the path. - `onTime`: The learner is progressing through the path on time. - `successful`: The learner has successfully completed all mandatory steps in the path. - `toRetake`: The learner needs to retake one or more steps in the path. - `unsuccessful`: The learner has not successfully completed at least one of the required steps in the path.

## Other responses

- `400` — The server cannot or will not process the request due to something that is perceived to be a client error.
- `401` — The given access token is either missing, invalid, has expired, or has been revoked.
- `403` — The given access token does not have the required OAuth scope to execute the request.
- `404` — The server cannot find the requested resource.
- `429` — The client has sent too many requests in a short amount of time.

---

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