Query parameters
-
The page number in a paginated set of results
-
The limit of results to be returned per page
-
Search course steps with a specific title
-
Search course steps that contains this in the title
-
Search course steps with theses types of content
Values are
Page
orQuiz
. -
Search course steps with a specific content type
Values are
Page
orQuiz
.
GET
/v1/courses/{courseId}/steps
curl \
--request GET 'https://openapi.meltingspot.io/v1/courses/{courseId}/steps'
Response examples (200)
{
"items": [
{
"id": "string",
"title": "string",
"duration": 42,
"contentType": "Page",
"createdAt": 42
}
],
"total": 42
}