API Methods
Account ...
Blogs ...
Bookings ...
CreditHistory ...
Dashboard ...
DirectCam ...
DirectChat ...
Email ...
FieldReport ...
Groups ...
HotLists ...
Interview ...
Lists ...
Movie ...
Newsfeed ...
PhoneChat ...
Pictures ...
Profile ...
Search ...
Tours ...
Webcam ...

Get Scheduled Shows For User

Use this method get scheduled DirectCam shows of an AdultWork.com member.

URL / Endpoint

Need help with Postman?

GET /v1/directCam/GetScheduledShowsForUser

Request

PropertyTypeDescription
UserID integer Required. The ID of the AdultWork.com user profile.
StartDate datetime The start date and time of when the show is scheduled. Format is yyyy-MM-dd HH:mm. Default is Current date.
EndDate datetime The end date and time of when the show is scheduled. Format is yyyy-MM-dd HH:mm. Default is null.
VATIPAddress string If supplied it will check the country of that IP address and add the local VAT to the price. For example: IP addresses from the UK will add 20 % to the price.
VATUserID integer If supplied it will overrule VATIPAddress. It will get the users vat details and add the vat to the price.

Request Information

HTTP Method / Verb

Parameters can be passed to this operation using the HTTP GET method by passing parameters over the query string of the URI.

Headers

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.

Authentication

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.

Samples

GET method

https://api-sandbox.adultwork.com/v1/directCam/GetScheduledShowsForUser
  ?apiKey={your-api-key}&UserID=123456
  

Response

PropertyTypeDescription
  Array of aws:ScheduledShow The member's DirectCam Scheduled Show data.

Response Sample

The following example returns a result with UserID set to 123456.

[
{
"ScheduleID": 1,
"Title": "Come and watch me",
"Summary": "You'll like me in my naughty show",
"Details": "Whatever you like I can do. Just join me.",
"EstimatedLengthInMinutes": 30,
"CategoryID": 1,
"ScheduledDate": "14/10/2016 21:15",
"Credits": 1.5,
"UserID": 123456,
"Nickname": "
JosepheneBlogs",
"Ratings": {

"Total":33, "Positive":34, "Neutral":0, "Negative":1, "Ratings":35, "Disputes":0
}
},
{
"ScheduleID": 2,
"Title": "Get ur freak on",
"Summary": "This will be wet.",
"Details": "Bring your raincoat as it will get wet...",
"EstimatedLengthInMinutes": 60,
"CategoryID": 17,
"ScheduledDate":
"14/10/2016 21:30",
"Credits": 2.99,
"UserID": 123456,
"Nickname": "
JosepheneBlogs",
"Ratings": {

"Total":33, "Positive":34, "Neutral":0, "Negative":1, "Ratings":35, "Disputes":0
}

}
]
<ArrayOfScheduledShow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DirectCam">
<ScheduledShow>
<CategoryID>1</CategoryID>
<Credits>1.5000</Credits>
<Details>
Whatever you like I can do. Just join me.<Details/>
<EstimatedLengthInMinutes>30</EstimatedLengthInMinutes>
<Nickname>
JosepheneBlogs</Nickname>
<Ratings xmlns:d3p1="http://schemas.datacontract.org/2004/07/API.Models.Profile">
<d3p1:Disputes>0</d3p1:Disputes>
<d3p1:Negative>1</d3p1:Negative>
<d3p1:Neutral>0</d3p1:Neutral>
<d3p1:Positive>34</d3p1:Positive>
<d3p1:Ratings>35</d3p1:Ratings>
<d3p1:Total>33</d3p1:Total>
</Ratings>
<ScheduleID>1</ScheduleID>
<ScheduledDate>14/10/2016 21:15</ScheduledDate>
<Summary>
You'll like me in my naughty show</Summary>
<Title>
Come and watch me</Title>
<UserID>123456</UserID>
</ScheduledShow>
<ScheduledShow>
<CategoryID>17</CategoryID>
<Credits>2.9900</Credits>
<Details>
Bring your raincoat as it will get wet...<Details/>
<EstimatedLengthInMinutes>60</EstimatedLengthInMinutes>
<Nickname>JosepheneBlogs</Nickname>
<Ratings xmlns:d3p1="http://schemas.datacontract.org/2004/07/API.Models.Profile">
<d3p1:Disputes>0</d3p1:Disputes>
<d3p1:Negative>1</d3p1:Negative>
<d3p1:Neutral>0</d3p1:Neutral>
<d3p1:Positive>34</d3p1:Positive>
<d3p1:Ratings>35</d3p1:Ratings>
<d3p1:Total>33</d3p1:Total>
</Ratings>

<ScheduleID>1</ScheduleID>
<ScheduledDate>14/10/2016 21:15</ScheduledDate>
<Summary>
This will be wet.Summary>
<Title>
Get ur freak on</Title>
<UserID>123456</UserID>
</ScheduledShow>