Invite members as Learning path participants
POST
/v1/learningPaths/{learningPathId}/participants~bulkInvite
curl \
--request POST 'https://openapi.meltingspot.io/v1/learningPaths/{learningPathId}/participants~bulkInvite' \
--header "Content-Type: application/json" \
--data '{"spotMemberIds":["string"],"invitedBySpotMemberId":"string","withEmailNotification":true}'
Request examples
{
"spotMemberIds": [
"string"
],
"invitedBySpotMemberId": "string",
"withEmailNotification": true
}
Response examples (201)
[
{
"id": "string",
"learningPathId": "string",
"spotMemberId": "string",
"spotMemberEmail": "string",
"spotMemberFirstname": {},
"spotMemberLastname": {},
"status": "Invited",
"invitedAt": 42,
"startedAt": 42,
"completedAt": 42,
"unenrolledAt": 42,
"lastActivityAt": 42,
"completionRate": 42
}
]