POST api/Vehicle/GetMonitorVehicleListCount

Request Information

URI Parameters

None.

Body Parameters

VehicleSearchCondition
NameDescriptionTypeAdditional 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

ApiInfoEntityOfMonitorVehicleEntity
NameDescriptionTypeAdditional information
data

MonitorVehicleEntity

None.

code

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "Total": 1,
    "OnlineCount": 2,
    "OfflineCount": 3,
    "AlarmCount": 4
  },
  "code": 1,
  "msg": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiInfoEntityOfMonitorVehicleEntityNdF_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>
    <AlarmCount>4</AlarmCount>
    <OfflineCount>3</OfflineCount>
    <OnlineCount>2</OnlineCount>
    <Total>1</Total>
  </Data>
</ApiInfoEntityOfMonitorVehicleEntityNdF_SKQEZ>