POST api/ConnectedCar/Customer/ByFilters

Request Information

URI Parameters

None.

Body Parameters

CustomerFilter
NameDescriptionTypeAdditional information
CustomerId

integer

None.

FleetId

integer

None.

CustomerIdentification

string

None.

CustomerTypeIdentification

integer

None.

CustomerActive

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "FleetId": 1,
  "CustomerIdentification": "sample string 1",
  "CustomerTypeIdentification": 1,
  "CustomerActive": 1
}

application/xml, text/xml

Sample:
<CustomerFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConnectedCarFleet.Shared.FilterClasses">
  <CustomerActive>1</CustomerActive>
  <CustomerId>1</CustomerId>
  <CustomerIdentification>sample string 1</CustomerIdentification>
  <CustomerTypeIdentification>1</CustomerTypeIdentification>
  <FleetId>1</FleetId>
</CustomerFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.