A Course is a structured learning module published to customers through the Members Portal. Courses are organised into sections (milestones) and lessons (individual content units). They can be used for internal training, community building, or self-learning offers.
Courses belong to a Location and are assigned a Host (a customer or administrator) who is responsible for its content. You can control who can access a course using the Visibility field:
| Visibility | Meaning |
|---|
| Public | Visible and accessible to everyone on the Members Portal |
| Hidden | Not listed on the Members Portal but accessible via a direct link |
| Private | Only accessible to members who have been explicitly added |
| Paid | Requires purchase via the linked TariffId pricing plan |
Courses can optionally display a community discussion group (HasCommunityGroup), be featured on the portal home page (ShowInHomePage), and be grouped together under a GroupName for easier navigation.
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 Course-Read role.
Path Parameters
The Id of the Course record to retrieve.
Code Examples
curl -X GET \
"https://spaces.nexudus.com/api/content/courses/87654321" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
ID of the Location this course belongs to.
ID of the coworker or administrator who hosts this course.
Comma-separated list of teams the host belongs to.
Course title displayed on the Members Portal.
Short summary displayed under the course title on the Members Portal (up to ~400 characters).
Full course description shown in the ‘What’s this course about?’ section when customers open the course.
Whether to display the overview section on the course page.
Whether the course has an associated community discussion group on the Members Portal.
Overview text displayed below the full description on the course page.
Stored filename of the course thumbnail image (read-only; use NewImageUrl to set).
URL of a new thumbnail image to upload (JPG/JPEG, PNG, or GIF, max 10 MB).
Set to true to remove the existing thumbnail image.
Stored filename of the course banner/large image (read-only; use NewLargeImageUrl to set).
URL of a new banner/large image to upload (JPG/JPEG, PNG, or GIF, max 10 MB).
Set to true to remove the existing banner/large image.
Whether the course is active and available to customers.
Optional group label used to cluster related courses together on the Members Portal.
Position of the course in listing pages; lower numbers appear first.
Whether the course is featured on the Members Portal home page.
Access control for the course: Public (1), Hidden from listing but accessible via link (2), Private/invite-only (3), or Paid via TariffId (4). See eCourseVisibility enum values: 1 = Public, 2 = Hidden, 3 = Private, 4 = Paid.
ID of the pricing plan (tariff) required to access this course when Visibility is Paid.
Billing frequency of the pricing plan (in months).
Billing frequency of the pricing plan (in weeks).
Price of the pricing plan.
Currency code of the pricing plan (e.g. USD, GBP).
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.
{
"BusinessId": 0,
"BusinessName": null,
"BusinessAddress": null,
"BusinessTownCity": null,
"BusinessPostalCode": null,
"HostId": 0,
"HostFullName": null,
"HostCompanyName": null,
"HostTeamNames": null,
"Title": "",
"SummaryText": null,
"FullDescription": null,
"ShowOverview": false,
"HasCommunityGroup": false,
"OverviewText": null,
"ImageFileName": null,
"NewImageUrl": null,
"ClearImageFile": null,
"LargeImageFileName": null,
"NewLargeImageUrl": null,
"ClearLargeImageFile": null,
"Active": false,
"GroupName": null,
"DisplayOrder": 0,
"ShowInHomePage": false,
"Visibility": 0,
"TariffId": null,
"TariffName": null,
"TariffInvoiceEvery": null,
"TariffInvoiceEveryWeeks": null,
"TariffPrice": null,
"TariffCurrencyCode": null,
"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": "Course Example",
"LocalizationDetails": null,
"CustomFields": null
}