POST api/ConnectedCar/Users/ByFilters

Request Information

URI Parameters

None.

Body Parameters

UserFilter
NameDescriptionTypeAdditional information
GroupId

integer

None.

FleetId

integer

None.

IsExternal

boolean

None.

Profile

UserProfile

None.

SearchText

string

None.

UserEmail

string

None.

Active

integer

None.

FullName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "GroupId": 1,
  "FleetId": 1,
  "IsExternal": true,
  "Profile": 1,
  "SearchText": "sample string 1",
  "UserEmail": "sample string 2",
  "Active": 1,
  "FullName": "sample string 3"
}

application/xml, text/xml

Sample:
<UserFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConnectedCarFleet.Shared.FilterClasses">
  <Active>1</Active>
  <FleetId>1</FleetId>
  <FullName>sample string 3</FullName>
  <GroupId>1</GroupId>
  <IsExternal>true</IsExternal>
  <Profile>SuperUser</Profile>
  <SearchText>sample string 1</SearchText>
  <UserEmail>sample string 2</UserEmail>
</UserFilter>

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.