GET api/v3/me/reports/learner/skills

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TrainingTypeItem
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

TenantId

integer

None.

UserType

UserType

None.

IsViewAllEnabled

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "TenantId": 3,
    "UserType": 0,
    "IsViewAllEnabled": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "TenantId": 3,
    "UserType": 0,
    "IsViewAllEnabled": true
  }
]

text/html

Sample:
[{"Id":1,"Name":"sample string 2","TenantId":3,"UserType":0,"IsViewAllEnabled":true},{"Id":1,"Name":"sample string 2","TenantId":3,"UserType":0,"IsViewAllEnabled":true}]

text/xml

Sample:
<ArrayOfTrainingTypeItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <TrainingTypeItem>
    <Id>1</Id>
    <IsViewAllEnabled>true</IsViewAllEnabled>
    <Name>sample string 2</Name>
    <TenantId>3</TenantId>
    <UserType>Beginner</UserType>
  </TrainingTypeItem>
  <TrainingTypeItem>
    <Id>1</Id>
    <IsViewAllEnabled>true</IsViewAllEnabled>
    <Name>sample string 2</Name>
    <TenantId>3</TenantId>
    <UserType>Beginner</UserType>
  </TrainingTypeItem>
</ArrayOfTrainingTypeItem>