Skip to main content
GET
/
api
/
v1
/
courses
/
{course_id}
Get Course
curl --request GET \
  --url https://api.seamind.xyz/api/v1/courses/{course_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "s3_path": "<string>",
  "launch_file": "<string>",
  "title": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

course_id
string<uuid>
required

Query Parameters

expand
boolean
default:false

Include enriched data (enrollment_count)

Response

Successful Response

Course data transfer object - returned from repositories. Represents a course as stored in the database.

id
string<uuid>
required
organization_id
string<uuid>
required
s3_path
string
required
launch_file
string
required
title
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
description
string | null