Learnifier
  1. Projects
Learnifier
  • Course Designs
    • Lists all global course design templates
      GET
  • Organization Units
    • Get Organization Unit with External Id
      GET
    • Organization Units
      GET
    • Adds an Organization Unit
      POST
    • Get Organization Unit
      GET
    • Updates an Organization Unit
      PATCH
  • Users
    • Gets a participation by external id
      GET
    • Gets a user by external id
      GET
    • Lists all users
      GET
    • Adds a user
      POST
    • User information
      GET
    • Updates user information
      PATCH
    • User profile picture
      GET
    • Returns information about the projects the user is a participant in.
      GET
  • Projects
    • Gets Organization Unit by external id
      GET
    • Organization Unit Projects
      GET
    • Create project
      POST
    • Deletes the project
      DELETE
    • Project information
      GET
    • Update project information
      PATCH
    • Project participants
      GET
    • Add participant
      POST
    • Deletes a participant
      DELETE
    • Activate participant
      POST
    • Participant login link
      POST
    • Project team members
      GET
  • Global User Groups
    • List Global User Groups.
    • List of all users in group.
  • User Groups
    • List User Groups.
    • Create a User Group.
    • Get user group
    • List of all users in group.
    • Add user group member.
    • Remove user group member.
  • Schemas
    • Schemas
      • ActivationError
      • AddOrganizationUnit
      • AddOrganizationUnitResponse
      • AddParticipant
      • AddProject
      • AddUser
      • AddUserGroup
      • AddUserGroupMember
      • AddUserResponse
      • BackOfficeRole
      • ClientRole
      • ClientRoles
      • CourseDesign
      • Error
      • GlobalUserGroup
      • GroupId
      • LoginLink
      • OrgUnit
      • OrgUnits
      • Participation
      • ProductFailure
      • Project
      • ProjectTeamMember
      • TeamRole
      • UpdateOrganizationUnit
      • UpdateProject
      • User
      • UserGroup
      • UserId
      • UserParticipationInfo
      • UserPreferences
      • UserWithPermissions
  1. Projects

Participant login link

POST
/orgunits/{orgid}/projects/{projectid}/participants/${participantId}/loginlink
Returns a single sign on link for the participant. The link is only usable once and should be used directly. The link expires after a few minutes.
This operation requires the login link permission.

Request

Path Params

Responses

🟢200A generated one time use login link
application/json
Body

🟠422The participant is not in a state where a loginlink is possible to get
🔴500Unexpected error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://learnifier.com/orgunits//projects//participants/$/loginlink'
Response Response Example
200 - Example 1
{
    "link": "http://www.example.com/login/1234567890"
}
Modified at 2023-08-17 09:38:12
Previous
Activate participant
Next
Project team members
Built with