training.progress

Returns a list of users and their completion status of training modules

SUPPORTED METHODS:

GET

ParametersTypeDescription
token (required)Valid token
user (accepted)integerUser id

DOCUMENTATION

GET
If user level perm is 2 or 3, retrieves training progress of all employees, otherwise retriever training progress of currently logged users (with perms 4 or 5).
Level 5 is required

--

Example Request:

{
   "module":"training.progress",
   "method":"GET",
   "request":{
   }
}

Example Response:

{
   "status":1,
   "data":{
      "156189":{
         "id":"156189",
         "name":"John Smith",
         "avatar":"6783472352",
         "total":15,
         "completed":15
      }
   },
   "token":"xxxxxxx"
}