curl --request GET \
--url https://api.alpha-1edtech.ai/powerpath/course-sequence/:id/stages \
--header 'Authorization: Bearer <token>'{
"stages": [
{
"id": "<string>",
"title": "<string>",
"grades": [
"-1"
],
"subject": "Reading",
"type": "course",
"properties": {
"courseReferences": [
{
"courseId": "<string>",
"refAddedAt": "2023-11-07T05:31:56Z"
}
],
"testTypes": [
"test_out"
],
"learningAppId": "<string>"
}
}
]
}Returns a list of sequence stages (CourseSequenceStage objects) of the specified course sequence.
To get the fist stage only, use limit=1.
To filter by grade, use grade={grade}.
To get the first stage of the specific grade, use grade={grade}&limit=1.
curl --request GET \
--url https://api.alpha-1edtech.ai/powerpath/course-sequence/:id/stages \
--header 'Authorization: Bearer <token>'{
"stages": [
{
"id": "<string>",
"title": "<string>",
"grades": [
"-1"
],
"subject": "Reading",
"type": "course",
"properties": {
"courseReferences": [
{
"courseId": "<string>",
"refAddedAt": "2023-11-07T05:31:56Z"
}
],
"testTypes": [
"test_out"
],
"learningAppId": "<string>"
}
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier (UUID)
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 Course Sequence Stages
Show child attributes