GET Account/GetCars?val={val}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| val | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AccountCar| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Brand | string |
None. |
|
| Model | string |
None. |
|
| Plate | string |
None. |
|
| BrandImage | string |
None. |
|
| ModelImage | string |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Brand": "sample string 2",
"Model": "sample string 3",
"Plate": "sample string 4",
"BrandImage": "sample string 5",
"ModelImage": "sample string 6",
"Active": true
},
{
"ID": 1,
"Brand": "sample string 2",
"Model": "sample string 3",
"Plate": "sample string 4",
"BrandImage": "sample string 5",
"ModelImage": "sample string 6",
"Active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfAccountCar xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
<AccountCar>
<Active>true</Active>
<Brand>sample string 2</Brand>
<BrandImage>sample string 5</BrandImage>
<ID>1</ID>
<Model>sample string 3</Model>
<ModelImage>sample string 6</ModelImage>
<Plate>sample string 4</Plate>
</AccountCar>
<AccountCar>
<Active>true</Active>
<Brand>sample string 2</Brand>
<BrandImage>sample string 5</BrandImage>
<ID>1</ID>
<Model>sample string 3</Model>
<ModelImage>sample string 6</ModelImage>
<Plate>sample string 4</Plate>
</AccountCar>
</ArrayOfAccountCar>