Learnifier
  1. Global User Groups
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.
      GET
    • List of all users in group.
      GET
  • 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. Global User Groups

List Global User Groups.

GET
/globalusergroups
Global User Groups
Returns a list of Global User Groups. Global User Groups are set up for the realm, and will generate groups that can be used on the client level.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://learnifier.com/globalusergroups'
Response Response Example
200 - Example 1
[
    {
        "created": "2019-08-24T14:15:22Z",
        "createdBy": "81590981-1e05-4fd5-aa15-15bc4b06cf7f",
        "id": 0,
        "name": "string",
        "parent": 0,
        "softiId": "string",
        "updated": "2019-08-24T14:15:22Z",
        "updatedBy": "81590981-1e05-4fd5-aa15-15bc4b06cf7f"
    }
]

Request

None

Responses

🟢200List of Global User Groups.
application/json
Body
array of:
created
string <date-time>
required
Timestamp when group was created.
createdBy
string <uuid>
optional
UUID of the user that created this group.
Example:
81590981-1e05-4fd5-aa15-15bc4b06cf7f
id
integer <int64>
required
The id of the group.
name
string 
optional
The name of the group.
parent
integer <int64>
optional
Id of parent group, null if group has no parent.
softiId
string 
optional
Alternative unique ID for the group.
updated
string <date-time>
optional
Timestamp when group was last modified.
updatedBy
string <uuid>
optional
UUID of the user that last updated this group.
Example:
81590981-1e05-4fd5-aa15-15bc4b06cf7f
🔴500Unexpected error
Previous
Project team members
Next
List of all users in group.
Built with