GET v1/TrainingType/ListInActiveTrainings

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

TrainingTypeListViewModel
NameDescriptionTypeAdditional information
Items

Collection of TrainingTypeListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Guid": "59f9c191-e562-41fe-b465-56ef13a3e1e1",
      "Name": "sample string 2",
      "NumberOfTrainings": 3
    },
    {
      "Guid": "59f9c191-e562-41fe-b465-56ef13a3e1e1",
      "Name": "sample string 2",
      "NumberOfTrainings": 3
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Guid":"59f9c191-e562-41fe-b465-56ef13a3e1e1","Name":"sample string 2","NumberOfTrainings":3},{"Guid":"59f9c191-e562-41fe-b465-56ef13a3e1e1","Name":"sample string 2","NumberOfTrainings":3}]}

application/xml, text/xml

Sample:
<TrainingTypeListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <TrainingTypeListItemViewModel>
      <Guid>59f9c191-e562-41fe-b465-56ef13a3e1e1</Guid>
      <Name>sample string 2</Name>
      <NumberOfTrainings>3</NumberOfTrainings>
    </TrainingTypeListItemViewModel>
    <TrainingTypeListItemViewModel>
      <Guid>59f9c191-e562-41fe-b465-56ef13a3e1e1</Guid>
      <Name>sample string 2</Name>
      <NumberOfTrainings>3</NumberOfTrainings>
    </TrainingTypeListItemViewModel>
  </Items>
</TrainingTypeListViewModel>