POST utils/v1/FieldService/GetServiceEvents

Gets the service request events list.

Request Information

URI Parameters

None.

Body Parameters

The filter.

ServiceRequestEventFilters
NameDescriptionTypeAdditional information
UserName

Gets or sets the name of the user.

string

None.

Criteria

Gets or sets the criteria.

string

None.

Skip

Gets or sets the skip.

integer

None.

Take

Gets or sets the take.

integer

None.

View

Gets or sets the view.

string

None.

Location

Gets or sets the location.

GeoLocation

None.

Request Formats

application/json, text/json

Sample:
{
  "userName": "sample string 1",
  "criteria": "sample string 2",
  "skip": 3,
  "take": 4,
  "view": "sample string 5",
  "location": {
    "country": "sample string 1",
    "countryCode": "sample string 2",
    "state": "sample string 3",
    "city": "sample string 4",
    "postCode": "sample string 5"
  }
}

application/xml, text/xml

Sample:
<ServiceRequestEventFilters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nexus.Connect.Api.Filters">
  <Criteria>sample string 2</Criteria>
  <Location>
    <City>sample string 4</City>
    <Country>sample string 1</Country>
    <CountryCode>sample string 2</CountryCode>
    <PostCode>sample string 5</PostCode>
    <State>sample string 3</State>
  </Location>
  <Skip>3</Skip>
  <Take>4</Take>
  <UserName>sample string 1</UserName>
  <View>sample string 5</View>
</ServiceRequestEventFilters>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A HttpResponseMessage object.

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.