GET api/GasType/GetGasTypeByCarID?carID={carID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| carID | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of GasTypeCommon| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Type | string |
None. |
|
| TypeAR | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "sample string 1",
"Type": "sample string 2",
"TypeAR": "sample string 3"
},
{
"ID": "sample string 1",
"Type": "sample string 2",
"TypeAR": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfGasTypeCommon xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/syartiService.Models">
<GasTypeCommon>
<ID>sample string 1</ID>
<Type>sample string 2</Type>
<TypeAR>sample string 3</TypeAR>
</GasTypeCommon>
<GasTypeCommon>
<ID>sample string 1</ID>
<Type>sample string 2</Type>
<TypeAR>sample string 3</TypeAR>
</GasTypeCommon>
</ArrayOfGasTypeCommon>