Courses
Create Course
Create a new Course record.
POST
Create Course
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:
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-Create role.Enums
eCourseVisibility — Visibility values
eCourseVisibility — Visibility values
Request Body
Required Fields
integer
required
ID of the Location this course belongs to.
integer
required
ID of the coworker or administrator who hosts this course.
string
required
Course title displayed on the Members Portal.
integer
required
Position of the course in listing pages; lower numbers appear first.
integer
required
Access control for the course: Public (1), Hidden from listing but accessible via link (2), Private/invite-only (3), or Paid via TariffId (4).
Optional Fields
string
Short summary displayed under the course title on the Members Portal (up to ~400 characters).
string
Full course description shown in the ‘What’s this course about?’ section when customers open the course.
boolean
Whether to display the overview section on the course page.
boolean
Whether the course has an associated community discussion group on the Members Portal.
string
Overview text displayed below the full description on the course page.
string
URL of a new thumbnail image to upload (JPG/JPEG, PNG, or GIF, max 10 MB).
boolean
Set to true to remove the existing thumbnail image.
string
URL of a new banner/large image to upload (JPG/JPEG, PNG, or GIF, max 10 MB).
boolean
Set to true to remove the existing banner/large image.
boolean
Whether the course is active and available to customers.
string
Optional group label used to cluster related courses together on the Members Portal.
boolean
Whether the course is featured on the Members Portal home page.
integer
ID of the pricing plan (tariff) required to access this course when Visibility is Paid.
Code Examples
Response
200
integer
HTTP status code.
200 on success.string
A human-readable message confirming the creation.
object
Contains the
Id of the newly created record.boolean
true if the course was created successfully.array
null on success.Example Response
400
string
A summary of the validation error(s), in the format
PropertyName: error message.any
null on validation failure.object[]
Array of validation errors.
boolean
false when the request fails validation.Example Response
Create Course