GET api/CrmInfo/GetWashCarList?uid={uid}&carnumber={carnumber}
“GetWashCarList”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| uid | “uid”的文档。 |
Define this parameter in the request URI. |
| carnumber | “carnumber”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Items": [
{
"OrderId": 1,
"CarNumber": "sample string 2",
"Time": "sample string 3"
},
{
"OrderId": 1,
"CarNumber": "sample string 2",
"Time": "sample string 3"
},
{
"OrderId": 1,
"CarNumber": "sample string 2",
"Time": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<PreOrderListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
<Items>
<PreOrderModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<Time>sample string 3</Time>
</PreOrderModel>
<PreOrderModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<Time>sample string 3</Time>
</PreOrderModel>
<PreOrderModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<Time>sample string 3</Time>
</PreOrderModel>
</Items>
</PreOrderListModel>