GET api/v1/Reports/TrainingType/GetTrainingTypeList
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TrainingTypeName | Description | Type | Additional information |
---|---|---|---|
TypeId | integer |
None. |
|
Name | string |
None. |
|
TenantId | integer |
None. |
|
CanDelete | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "TypeId": 1, "Name": "sample string 2", "TenantId": 3, "CanDelete": true }, { "TypeId": 1, "Name": "sample string 2", "TenantId": 3, "CanDelete": true } ]
text/html
Sample:
[{"TypeId":1,"Name":"sample string 2","TenantId":3,"CanDelete":true},{"TypeId":1,"Name":"sample string 2","TenantId":3,"CanDelete":true}]
text/xml
Sample:
<ArrayOfTrainingType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models"> <TrainingType> <CanDelete>true</CanDelete> <Name>sample string 2</Name> <TenantId>3</TenantId> <TypeId>1</TypeId> </TrainingType> <TrainingType> <CanDelete>true</CanDelete> <Name>sample string 2</Name> <TenantId>3</TenantId> <TypeId>1</TypeId> </TrainingType> </ArrayOfTrainingType>