Learnifier
  1. Users
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.
  1. Users

User profile picture

GET
/users/{userid}/pic
Users
Returns a thumbnail picture of the user. This can either be a selected picture or an auto generated image. This method doesn't require a full sign in. The api key is sufficient.
The image is square and is likely, but not necessary, to be in 128x128 PNG format. However the format will always be either PNG, JPEG or GIF.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://learnifier.com/users//pic?key={APIKEY}'
Response Response Example
200 - Example 1
{}

Request

Path Params
userid
string 
required
The user id
APIKEY
string 
required
Query Params
key
string 
required
Example:
{APIKEY}

Responses

🟢200An image. Check the Content-Type header to determine which type the returned image have
application/json
Body
object {0}
🔵302A redirect to the profile
🔴500Unexpected error
Previous
Updates user information
Next
Returns information about the projects the user is a participant in.
Built with