GET Account/GetCar?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountCarEdit| Name | Description | Type | Additional information |
|---|---|---|---|
| CarID | integer |
None. |
|
| BrandID | integer |
None. |
|
| ModelID | integer |
None. |
|
| Plate | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CarID": 1,
"BrandID": 2,
"ModelID": 3,
"Plate": "sample string 4"
}
application/xml, text/xml
Sample:
<AccountCarEdit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <BrandID>2</BrandID> <CarID>1</CarID> <ModelID>3</ModelID> <Plate>sample string 4</Plate> </AccountCarEdit>