PUT api/Content/v2/DeleteTour

Request Information

URI Parameters

None.

Body Parameters

APIDeleteTourRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

TourId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "afe2c66f-ea26-4d90-93fb-65b0fbe28827",
  "UserUniqueId": 3,
  "TourId": 4
}

application/xml, text/xml

Sample:
<APIDeleteTourRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <TourId>4</TourId>
  <UniqueId>afe2c66f-ea26-4d90-93fb-65b0fbe28827</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIDeleteTourRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Message>sample string 2</Message>
  <Status>true</Status>
</APIResult>