PUT api/content/v4/updateTourLocations

Request Information

URI Parameters

None.

Body Parameters

APIUpdateTourLocationsRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

LocationId

integer

None.

TourId

integer

None.

IsAdd

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "aa6ced60-ba95-48f3-ba69-d827e85c8108",
  "UserUniqueId": 3,
  "LocationId": 4,
  "TourId": 5,
  "IsAdd": true
}

application/xml, text/xml

Sample:
<APIUpdateTourLocationsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <IsAdd>true</IsAdd>
  <LocationId>4</LocationId>
  <TourId>5</TourId>
  <UniqueId>aa6ced60-ba95-48f3-ba69-d827e85c8108</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIUpdateTourLocationsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APICommonWrapperOfAPIUpdateTourLocationsResponse
NameDescriptionTypeAdditional information
Status

HttpStatusCode

None.

Message

string

None.

Data

APIUpdateTourLocationsResponse

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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