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

Get Direct Cam Special Offers

This API operation returns a user's direct cam special offers.

URL / Endpoint

Need help with Postman?

GET /v1/Directcam/GetDirectCamSpecialOffers

GET /v1/Groups/Directcam/GetDirectCamSpecialOffers (See Group manager)

Request

PropertyTypeDescription
UserID integer Required. The User ID of the AdultWork.com member profile you wish the API to return the direct cam special offers of.

Group manager

If the authenticated user is the manager of a group, the user can impersonate another member of the group. This allows the manager to perform tasks of other group members without having to authenticate as them.

The request can be build in the same way as the regular request, but targeted towards the Group manager endpoint. Additionally, it has the following extra parameters:

PropertyTypeDescription
UserID integer Required. The ID of a member in the group that will be impersonated for this request.

Request Information

HTTP Method / Verb

Parameters can be passed to this operation using the HTTP GET method with the input model as a querystring.

Headers

The REST API uses HTTP request headers to determine what data type is returned or to authenticate the Authorization token. More information can be found in the overview section.

Authentication

An Authorization header is required with every request and must contain the access_token of the user. More information can be found in the Access tokens page.

Scopes

This endpoint does not require any additional scopes.

Samples

GET method

https://api-sandbox.adultwork.com/v1/Directcam/GetDirectCamSpecialOffers

Authorization: bearer {your-access-token}

GET as Group manager

https://api-sandbox.adultwork.com/v1/Groups/Directcam/GetDirectCamSpecialOffers
?UserID=123456

Authorization: bearer {your-access-token}

Response

PropertyTypeDescription
DirectCamSpecialOffers Array of aws:DirectCamSpecialOffer The member's direct cam special offers.

Response Sample

The following example shows a sample returned by the API.

{
"DirectCamSpecialOffers": [
{
"OfferID": 2,
"OfferNumber": 1,
"Title": "10 mins for 30...",
"Duration": 10,
"
PrivatePPM": "3.00",
"TotalPrice": "30.00",
"AllowRateContinue": false,
"ModeID": 2,
"Incomplete": true,
"CanPurchase": false,
"GroupPPM": "1.00",
"DoesGroup": true,
"DoesPrivate": true
},
{
"OfferID": 4,
"OfferNumber": 4,
"Title": "12 for 6",
"Duration": 12,
"
PrivatePPM": "0.50",
"TotalPrice": "6.00",
"AllowRateContinue": true,
"ModeID": 2,
"Incomplete": false,
"CanPurchase": true,
"GroupPPM": "1.00",
"DoesGroup": true,
"DoesPrivate": true
},
{
"OfferID": 6,
"OfferNumber": 6,
"Title": "25 for 31",
"Duration": 25,
"
PrivatePPM": "1.24",
"TotalPrice": "31.00",
"AllowRateContinue": false,
"ModeID": 2,
"Incomplete": false,
"CanPurchase": true,
"GroupPPM": "1.00",
"DoesGroup": true,
"DoesPrivate": true
}
]
}


<GetDirectCamSpecialOffersResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DirectCam">
<DirectCamSpecialOffers>
<DirectCamSpecialOffer>
<AllowRateContinue>false</AllowRateContinue>
<CanPurchase>false</CanPurchase>
<DoesGroup>true</DoesGroup>
<DoesPrivate>true</DoesPrivate>
<Duration>10</Duration>
<GroupPPM>1.00</GroupPPM>
<Incomplete>true</Incomplete>
<ModeID>2</
ModeID>
<OfferID>2</OfferID>
<OfferNumber>1</OfferNumber>
<
PrivatePPM>3.00</PrivatePPM>
<Title>10 mins for 30...</Title>
<TotalPrice>30.00</TotalPrice>
</DirectCamSpecialOffer>
<DirectCamSpecialOffer>
<AllowRateContinue>true</AllowRateContinue>
<CanPurchase>true</CanPurchase>
<DoesGroup>true</DoesGroup>
<DoesPrivate>true</DoesPrivate>
<Duration>12</Duration>
<GroupPPM>1.00</GroupPPM>
<Incomplete>false</Incomplete>
<
ModeID>2</ModeID>
<OfferID>4</OfferID>
<OfferNumber>4</OfferNumber>
<
PrivatePPM>0.50</PrivatePPM>
<Title>12 for 6</Title>
<TotalPrice>6.00</TotalPrice>
</DirectCamSpecialOffer>
<DirectCamSpecialOffer>
<AllowRateContinue>false</AllowRateContinue>
<CanPurchase>true</CanPurchase>
<DoesGroup>true</DoesGroup>
<DoesPrivate>true</DoesPrivate>
<Duration>25</Duration>
<GroupPPM>1.00</GroupPPM>
<Incomplete>false</Incomplete>
<
ModeID>2</ModeID>
<OfferID>6</OfferID>
<OfferNumber>6</OfferNumber>
<
PrivatePPM>1.24</PrivatePPM>
<Title>25 for 31</Title>
<TotalPrice>31.00</TotalPrice>
</DirectCamSpecialOffer>
</DirectCamSpecialOffers>
</GetDirectCamSpecialOffersResult>