Skip to main content
GET
Get one CourseMember
A CourseMember represents a customer’s enrolment in a Course. When a customer signs up to a course through the Members Portal they are automatically added as a CourseMember. Members can also be added manually via the Admin Panel or the API. Each CourseMember record tracks the member’s progress (LastCompletedLessonId, LastAccess) and their access status:
  • Approved — the member has been approved to access the course content. For public courses this is set automatically on sign-up; for private or paid courses an administrator may need to approve the enrolment.
  • Blocked — the member has been blocked from accessing the course.
Use CourseCompletedLesson records to query which individual lessons a member has completed.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CourseMember-Read role.

Path Parameters

integer
required
The Id of the CourseMember record to retrieve.

Code Examples

Response

200

integer
ID of the course the member is enrolled in.
string
Title of the course.
integer
ID of the customer enrolled in the course.
string
Whether the enrolled customer is an Individual (1) or a Company (2).
string
Full name of the enrolled customer.
string
Company name of the enrolled customer.
string
Comma-separated list of teams the enrolled customer belongs to.
string
Billing name of the enrolled customer.
integer
ID of the most recently completed lesson for this member.
string
Title of the most recently completed lesson.
string
Date and time the member last accessed the course.
boolean
Whether the member has been approved to access the course content.
boolean
Whether the member has been blocked from accessing the course.
integer
Unique record identifier.
string
UUID of the record.
string
Date and time the record was created (ISO 8601).
string
Date and time the record was last updated (ISO 8601).
string
Email of the user who last updated this record.
boolean
Whether the record was recently created.
string
External system identifier.
Example Response