GET api/MobilityAids
Gets the list of mobility aids that a client can bring on a trip.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns the list of mobility aids (code and name).
Collection of MobilityAidName | Description | Type | Additional information |
---|---|---|---|
Code |
Gets or sets the code that can be used to identify the mobility aid. |
string |
None. |
Name |
Gets or sets the friendly name of the mobility aid. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "code": "Animal", "name": "Service Animal" }, { "code": "Braces", "name": "Service Animal" }, { "code": "Cane", "name": "Cane/Quad Cane" }, { "code": "Crutch", "name": "Crutches" }, { "code": "LEChair", "name": "Large Electric Wheelchair" }, { "code": "LMChair", "name": "Large Manual Wheelchair" }, { "code": "Oxygen", "name": "Oxygen Tank" }, { "code": "Prosth", "name": "Prosthesis" }, { "code": "Sign", "name": "Sign Language" }, { "code": "Walker", "name": "Walker" } ]
application/xml, text/xml
Sample:
<ArrayOfMobilityAid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TS.DR.Resources"> <MobilityAid> <Code>Animal</Code> <Name>Service Animal</Name> </MobilityAid> <MobilityAid> <Code>Braces</Code> <Name>Service Animal</Name> </MobilityAid> <MobilityAid> <Code>Cane</Code> <Name>Cane/Quad Cane</Name> </MobilityAid> <MobilityAid> <Code>Crutch</Code> <Name>Crutches</Name> </MobilityAid> <MobilityAid> <Code>LEChair</Code> <Name>Large Electric Wheelchair</Name> </MobilityAid> <MobilityAid> <Code>LMChair</Code> <Name>Large Manual Wheelchair</Name> </MobilityAid> <MobilityAid> <Code>Oxygen</Code> <Name>Oxygen Tank</Name> </MobilityAid> <MobilityAid> <Code>Prosth</Code> <Name>Prosthesis</Name> </MobilityAid> <MobilityAid> <Code>Sign</Code> <Name>Sign Language</Name> </MobilityAid> <MobilityAid> <Code>Walker</Code> <Name>Walker</Name> </MobilityAid> </ArrayOfMobilityAid>