Invite learner to course API

Invite learner to course API

Description: To invite a learner to your course.
Request URL: /api/v4/<orgId>/addCourseAttendee.json (How do I get my orgId?)
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>
"courseId"    : <ID of the course you want to invite the learner to. (How do I get my courseId?)
"expiryTime": <Time until which the course is available for free access>
                                               
}
}

Parameter Description:
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.)