POST api/Vehicle/GetVehicleList
Request Information
URI Parameters
None.
Body Parameters
VehicleSearchConditionName | Description | Type | Additional information |
---|---|---|---|
CompanyId | integer |
None. |
|
ID | integer |
None. |
|
plateNumber | string |
None. |
|
account | string |
None. |
|
state | integer |
None. |
|
State | integer |
None. |
|
IsPage | boolean |
None. |
|
Total | integer |
None. |
|
PageIndex | integer |
None. |
|
Page | integer |
None. |
|
PageSize | integer |
None. |
|
StartIndex | integer |
None. |
|
EndIndex | integer |
None. |
|
Sort | string |
None. |
|
Order | string |
None. |
|
OrderField | string |
None. |
|
SearchKey | string |
None. |
|
Search | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CompanyId": 1, "ID": 2, "plateNumber": "sample string 3", "account": "sample string 4", "state": 5, "State": 6, "IsPage": true, "Total": 8, "PageIndex": 10, "Page": 10, "PageSize": 11, "StartIndex": 100, "EndIndex": 110, "Sort": "sample string 12", "Order": "sample string 13", "OrderField": "sample string 14", "SearchKey": "sample string 1", "Search": "sample string 1" }
application/xml, text/xml
Sample:
<VehicleSearchCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model"> <IsPage>true</IsPage> <Order>sample string 13</Order> <OrderField>sample string 14</OrderField> <Page>10</Page> <PageIndex>10</PageIndex> <PageSize>11</PageSize> <Search>sample string 1</Search> <SearchKey>sample string 1</SearchKey> <Sort>sample string 12</Sort> <Total>8</Total> <CompanyId>1</CompanyId> <ID>2</ID> <State>6</State> <account>sample string 4</account> <plateNumber>sample string 3</plateNumber> <state>5</state> </VehicleSearchCondition>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiInfoEntityOfListOfVehicleEntityName | Description | Type | Additional information |
---|---|---|---|
data | Collection of VehicleEntity |
None. |
|
code | integer |
None. |
|
msg | string |
None. |
Response Formats
application/json
Sample:
{ "data": [ { "_CarId": 2, "CarId": 7, "CompanyId": 3, "CompanyName": "sample string 4", "V_No": "sample string 5", "plateNumber": "sample string 5", "V_Id": 7, "Sim": "sample string 8" }, { "_CarId": 7, "CarId": 7, "CompanyId": 3, "CompanyName": "sample string 4", "V_No": "sample string 5", "plateNumber": "sample string 5", "V_Id": 7, "Sim": "sample string 8" } ], "code": 1, "msg": "sample string 2" }
text/json
Sample:
{ "data": [ { "_CarId": 7, "CarId": 7, "CompanyId": 3, "CompanyName": "sample string 4", "V_No": "sample string 5", "plateNumber": "sample string 5", "V_Id": 7, "Sim": "sample string 8" }, { "_CarId": 7, "CarId": 7, "CompanyId": 3, "CompanyName": "sample string 4", "V_No": "sample string 5", "plateNumber": "sample string 5", "V_Id": 7, "Sim": "sample string 8" } ], "code": 1, "msg": "sample string 2" }
application/xml, text/xml
Sample:
<ApiInfoEntityOfArrayOfVehicleEntityNdF_SKQEZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model"> <Code>1</Code> <Message>sample string 2</Message> <Data> <VehicleEntity> <CarId>7</CarId> <CompanyId>3</CompanyId> <CompanyName>sample string 4</CompanyName> <Sim>sample string 8</Sim> <V_Id>7</V_Id> <V_No>sample string 5</V_No> <_CarId>7</_CarId> <plateNumber>sample string 5</plateNumber> </VehicleEntity> <VehicleEntity> <CarId>7</CarId> <CompanyId>3</CompanyId> <CompanyName>sample string 4</CompanyName> <Sim>sample string 8</Sim> <V_Id>7</V_Id> <V_No>sample string 5</V_No> <_CarId>7</_CarId> <plateNumber>sample string 5</plateNumber> </VehicleEntity> </Data> </ApiInfoEntityOfArrayOfVehicleEntityNdF_SKQEZ>