PUT api/Content/v2/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": "01d798d9-97b9-493a-80a3-312685691511",
"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>01d798d9-97b9-493a-80a3-312685691511</UniqueId> <UserUniqueId>3</UserUniqueId> </APIContactTourRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIContactTourResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| List | Collection of APIContactTour |
None. |
|
| TotalCounts | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"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:
<APIContactTourResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<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>
</APIContactTourResponse>