POST api/Vehicle/GetDriverList
Request Information
URI Parameters
None.
Body Parameters
DriverSearchConditionName | Description | Type | Additional information |
---|---|---|---|
DriverName | string |
None. |
|
account | string |
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:
{ "DriverName": "sample string 1", "account": "sample string 2", "IsPage": true, "Total": 4, "PageIndex": 6, "Page": 6, "PageSize": 7, "StartIndex": 36, "EndIndex": 42, "Sort": "sample string 8", "Order": "sample string 9", "OrderField": "sample string 10", "SearchKey": "sample string 1", "Search": "sample string 1" }
application/xml, text/xml
Sample:
<DriverSearchCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model"> <IsPage>true</IsPage> <Order>sample string 9</Order> <OrderField>sample string 10</OrderField> <Page>6</Page> <PageIndex>6</PageIndex> <PageSize>7</PageSize> <Search>sample string 1</Search> <SearchKey>sample string 1</SearchKey> <Sort>sample string 8</Sort> <Total>4</Total> <DriverName>sample string 1</DriverName> <account>sample string 2</account> </DriverSearchCondition>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiInfoEntityOfListOfDriverEntityName | Description | Type | Additional information |
---|---|---|---|
data | Collection of DriverEntity |
None. |
|
code | integer |
None. |
|
msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": [ { "DriverName": "sample string 3", "IdCard": "sample string 4", "D_Name": "sample string 3", "D_IdCard": "sample string 4" }, { "DriverName": "sample string 3", "IdCard": "sample string 4", "D_Name": "sample string 3", "D_IdCard": "sample string 4" } ], "code": 1, "msg": "sample string 2" }
application/xml, text/xml
Sample:
<ApiInfoEntityOfArrayOfDriverEntityNdF_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> <DriverEntity> <D_IdCard>sample string 4</D_IdCard> <D_Name>sample string 3</D_Name> <DriverName>sample string 3</DriverName> <IdCard>sample string 4</IdCard> </DriverEntity> <DriverEntity> <D_IdCard>sample string 4</D_IdCard> <D_Name>sample string 3</D_Name> <DriverName>sample string 3</DriverName> <IdCard>sample string 4</IdCard> </DriverEntity> </Data> </ApiInfoEntityOfArrayOfDriverEntityNdF_SKQEZ>