GET api/TransportRequest/GetPassengerTypes

Get list of passenger types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

PassengerTypeDTO
NameDescriptionTypeAdditional information
PassengerType

Passenger Type (Patients with different passenger types should not be on the same transport request)

string

Required

IsAllowedPatientStatus

Allowed patient status - only if value is true is it a valid and allowed patient status

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "PassengerType": "sample string 1",
  "IsAllowedPatientStatus": true
}

application/xml, text/xml

Sample:
<PassengerTypeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMS.Models">
  <IsAllowedPatientStatus>true</IsAllowedPatientStatus>
  <PassengerType>sample string 1</PassengerType>
</PassengerTypeDTO>