PUT api/content/v4/getcontacttour
Request Information
URI Parameters
None.
Body Parameters
APIContactTourRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| PageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "b7037734-24f1-4329-80ec-64eb06b68367",
"UserUniqueId": 3,
"PageNumber": 4
}
application/xml, text/xml
Sample:
<APIContactTourRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <PageNumber>4</PageNumber> <UniqueId>b7037734-24f1-4329-80ec-64eb06b68367</UniqueId> <UserUniqueId>3</UserUniqueId> </APIContactTourRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfAPIContactTourResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | APIContactTourResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {
"List": [
{
"Name": "sample string 1",
"CreatedDate": 2,
"TourId": 3,
"NoOfStops": 1,
"TotalDistance": 1.0
},
{
"Name": "sample string 1",
"CreatedDate": 2,
"TourId": 3,
"NoOfStops": 1,
"TotalDistance": 1.0
}
],
"TotalCounts": 1
}
}
application/xml, text/xml
Sample:
<APICommonWrapperOfAPIContactTourResponseZdSfSp5S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data>
<List>
<APIContactTour>
<CreatedDate>2</CreatedDate>
<Name>sample string 1</Name>
<NoOfStops>1</NoOfStops>
<TotalDistance>1</TotalDistance>
<TourId>3</TourId>
</APIContactTour>
<APIContactTour>
<CreatedDate>2</CreatedDate>
<Name>sample string 1</Name>
<NoOfStops>1</NoOfStops>
<TotalDistance>1</TotalDistance>
<TourId>3</TourId>
</APIContactTour>
</List>
<TotalCounts>1</TotalCounts>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfAPIContactTourResponseZdSfSp5S>