curl --request GET \
--url https://api.alpha-1edtech.ai/powerpath/course-sequence/ \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"subject": "Reading",
"title": "<string>",
"author": "[email protected]",
"status": "draft",
"statusUpdatedAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
]
}Returns a list of all course sequences (CourseSequenceHead objects) available in the system.
Heads do not contain stages.
You can filter by status and subject.
To get the active sequence for a subject, use status=active&subject={subject}.
curl --request GET \
--url https://api.alpha-1edtech.ai/powerpath/course-sequence/ \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"subject": "Reading",
"title": "<string>",
"author": "[email protected]",
"status": "draft",
"statusUpdatedAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
draft, active, retired, tobedeleted Reading, Language, Vocabulary, Social Studies, Writing, Science, FastMath, Math, None, Other Course Sequence Heads
Show child attributes