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
The Id of the CourseMember record to retrieve.
Code Examples
curl -X GET \
"https://spaces.nexudus.com/api/content/coursemembers/87654321" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
ID of the course the member is enrolled in.
ID of the customer enrolled in the course.
Whether the enrolled customer is an Individual (1) or a Company (2).
Full name of the enrolled customer.
Company name of the enrolled customer.
Comma-separated list of teams the enrolled customer belongs to.
Billing name of the enrolled customer.
ID of the most recently completed lesson for this member.
Title of the most recently completed lesson.
Date and time the member last accessed the course.
Whether the member has been approved to access the course content.
Whether the member has been blocked from accessing the course.
Unique record identifier.
Date and time the record was created (ISO 8601).
Date and time the record was last updated (ISO 8601).
Email of the user who last updated this record.
Whether the record was recently created.
External system identifier.
{
"CourseId": 0,
"CourseTitle": null,
"CoworkerId": 0,
"CoworkerCoworkerType": null,
"CoworkerFullName": null,
"CoworkerCompanyName": null,
"CoworkerTeamNames": null,
"CoworkerBillingName": null,
"LastCompletedLessonId": null,
"LastCompletedLessonTitle": null,
"LastAccess": null,
"Approved": false,
"Blocked": false,
"Id": 87654321,
"UpdatedOn": "2025-01-15T10:30:00Z",
"CreatedOn": "2025-01-10T08:00:00Z",
"UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"UpdatedBy": "admin@example.com",
"IsNew": false,
"SystemId": null,
"ToStringText": "CourseMember Example",
"LocalizationDetails": null,
"CustomFields": null
}