GET api/EDvirInspectionItems
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EDVIRInspectionItems| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| itemClass | Itemclass |
None. |
|
| name | string |
None. |
|
| description | string |
None. |
|
| hardStop | boolean |
None. |
|
| active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"itemClass": 0,
"name": "sample string 2",
"description": "sample string 3",
"hardStop": true,
"active": true
},
{
"ID": 1,
"itemClass": 0,
"name": "sample string 2",
"description": "sample string 3",
"hardStop": true,
"active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEDVIRInspectionItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FareBackEndData">
<EDVIRInspectionItems>
<ID>1</ID>
<active>true</active>
<description>sample string 3</description>
<hardStop>true</hardStop>
<itemClass>Inside</itemClass>
<name>sample string 2</name>
</EDVIRInspectionItems>
<EDVIRInspectionItems>
<ID>1</ID>
<active>true</active>
<description>sample string 3</description>
<hardStop>true</hardStop>
<itemClass>Inside</itemClass>
<name>sample string 2</name>
</EDVIRInspectionItems>
</ArrayOfEDVIRInspectionItems>