Invite learner to course API
Description: To invite a learner to your course.
OAuth Scope: TrainerCentral.userapi.CREATE
Method: POST
Request Parameters:
{
"courseAttendee": {
"email" : <Learner's email address>
"firstName" : <Learner's first name>
"lastName" : <Learner's last name>
"password" : <Password for your learner's account>
"expiryTime": <Time until which the course is available for free access>
}
}
password : This parameter is optional and needs to be entered only if you've created a password for your learner.
expiryTime : This is an optional parameter that accepts Unix timestamp in milliseconds. For reference, please visit https://currentmillis.com (CurrentMillis is an external website that isn't affiliated with TrainerCentral.)
Related Articles
List of all TrainerCentral APIs
Getting Started Get Oauth token API Course APIs Create chapter API Edit chapter API Create course API Edit course API Create lesson API Edit lesson API Create assignment API Delete lesson/live workshop/assignment API Delete chapter API Delete course ...
Invite existing learners to your courses and live workshops
To invite existing learners to the specific course or live workshop, a user with Super Admin or Admin privileges can follow the steps below To invite learners Navigate to the Users tab in the left pane. Select the Learners tab. You can invite them ...
Track a learner's progress
To monitor an individual learner's enrollment and report, a user with Super Admin or Admin privileges can follow the steps below. If you want to view the consolidated report of all learners' performance in a specific or all courses, refer to this ...
Invite learner to academy API
Description: To invite a learner to your academy. Request URL: /api/v4/<orgId>/addCourseAttendee.json (How to get my <orgId>?) Method: POST OAuth Scope: TrainerCentral.userapi.CREATE Request Parameters: { "courseAttendee": { "email": <Learner's ...
Revoke learner's access to a course API
Description: To revoke a learner's access to a course. Request URL: <domain>/api/v4/<orgId>/updateCourseAttendee/<courseMemberId>.json Method: PUT OAuth Scope: TrainerCentral.courseapi.UPDATE Parameters: NA Request Body: { ...