Use this method to get a specific tour of an AdultWork.com member
GET
/v1/tours/GetTour
Property | Type | Description |
---|---|---|
TourID |
integer | Required The Tour ID of the AdultWork.com member profile you wish the API to return the tour of. |
Parameters can be passed to this operation using the HTTP GET method by passing parameters over the query string of the URI.
The REST API uses HTTP request headers to determine what data type is returned or to authenticate the developer's API key. More information can be found in the overview section.
This endpoint has the following optional headers:
Headers | Value | |
---|---|---|
X-MaskImages |
1 |
What's this? |
Your API-Key is required with every request and can be passed in as a header or a query-string parameter. Don't have an API-Key? Get one now.
https://api-sandbox.adultwork.com/v1/tours/GetTour
?apiKey={your-api-key}
&TourID=1
Property | Type | Description |
---|---|---|
Tours |
aws:Tour | Tour member's tour data. |
The following example returns a single tour.
{
"TourID": 1,
"User": {
"UserID": 123456,
"Nickname": "JosepheneBlogs",
"Gender": "Female",
"Age": 21,
"IsEscort": true,
"IsWebcam": false,
"IsPhoneChat": false,
"IsSMSChat": true,
"AvailableTodayEscort": true,
"AvailableNowWebcam": false,
"AvailableNowPhoneChat": false,
"Ratings":{
"Total":33,
"Positive":34,
"Neutral":0,
"Negative":1,
"Ratings":35,
"Disputes":0
},
"ProfileThumbnailSafe": false,
"ProfileThumbnailURL": null,
"ProfileURL": "http://refer.adultwork.com/?PID=1&T=http%3a%2f%2fwww.adultwork.com%2f123456",
"RatingsURL": "http://refer.adultwork.com/?PID=1&T=http%3a%2f%2fwww.adultwork.com%2fdlgExtRatings.asp%3fU%3d123456",
"Orientation": "Bi-curious"
},
"Title": "My first Tour",
"Details": "Hey guys - check out my first tour!",
"StartDate": "2016-01-01T00:00:00",
"EndDate": "2016-06-01T00:00:00",
"Stops": 1,
"TourStops": [
{
"StopID": 1,
"DateFrom": "2016-01-01T00:00:00",
"DateTo": "2016-06-01T00:00:00",
"Country": "United Kingdom",
"Region": "London",
"County": "Ealing",
"Town": "London",
"PostCode": "W11",
"Details": "24/7 available"
}
]
}
<Tour>
<Details>Hey guys - check out my first tour!</Details>
<EndDate>2016-06-01T00:00:00</EndDate>
<StartDate>2016-01-01T00:00:00</StartDate>
<Stops>1</Stops>
<Title>My First Tour</Title>
<TourID>1</TourID>
<TourStops>
<TourStop>
<Country>United Kingdom</Country>
<County>Ealing</County>
<DateFrom>2016-01-01T00:00:00</DateFrom>
<DateTo>2016-06-01T00:00:00</DateTo>
<Details>24/7 available</Details>
<PostCode>W11</PostCode>
<Region>London</Region>
<StopID>1</StopID>
<Town>London</Town>
</TourStop>
</TourStops>
<User>
<Age >21</Age>
<AvailableNowPhoneChat>false</AvailableNowPhoneChat>
<AvailableNowWebcam >false</AvailableNowWebcam>
<AvailableTodayEscort >true</AvailableTodayEscort>
<Gender>Female</Gender>
<IsEscort >true</IsEscort>
<IsPhoneChat>false</IsPhoneChat>
<IsSMSChat>false</IsSMSChat>
<IsWebcam >false</IsWebcam>
<Nickname >JosepheneBlogs</Nickname>
<Ratings xmlns:d5p1="http://schemas.datacontract.org/2004/07/API.Models.Profile">
<d5p1:Disputes>0</d5p1:Disputes>
<d5p1:Negative>1</d5p1:Negative>
<d5p1:Neutral>0</d5p1:Neutral>
<d5p1:Positive>34</d5p1:Positive>
<d5p1:Ratings>29</d5p1:Ratings>
<d5p1:Total>33</d5p1:Total>
</Ratings>
<UserID >123456</UserID>
<ProfileThumbnailSafe>false</ProfileThumbnailSafe>
<ProfileThumbnailURL i:isnil="true" />
<ProfileURL>http://refer.adultwork.com/?PID=1&T=http%3a%2f%2fwww.adultwork.com%2f123456</ProfileURL>
<RatingsURL>http://refer.adultwork.com/?PID=1&T=http%3a%2f%2fwww.adultwork.com%2fdlgExtRatings.asp%3fU%3d123456</RatingsURL>
<Orientation>Bi-curious</Orientation>
</User>
</Tour>