PUT api/Content/v2/GetContactTour
Request Information
URI Parameters
None.
Body Parameters
APIContactTourRequestName | 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": "e14149fc-bec0-43d6-b093-243f4683b182", "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>e14149fc-bec0-43d6-b093-243f4683b182</UniqueId> <UserUniqueId>3</UserUniqueId> </APIContactTourRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIContactTourResponseName | 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 }, { "Name": "sample string 1", "CreatedDate": 2, "TourId": 3 } ], "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> <TourId>3</TourId> </APIContactTour> <APIContactTour> <CreatedDate>2</CreatedDate> <Name>sample string 1</Name> <TourId>3</TourId> </APIContactTour> </List> <TotalCounts>1</TotalCounts> </APIContactTourResponse>