GET api/v3/TrainingTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TrainingType
NameDescriptionTypeAdditional 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>