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

Save Directcam Settings

Use this method to save the settings used by the performer.

URL / Endpoint

Need help with Postman?

POST /v1/DirectCam/SaveSettings

POST /v1/Groups/DirectCam/SaveSettings (See Group manager)

Request

PropertyTypeDescription
DoesFree boolean Required. Indicates this user will cam & chat for free (clothed, to entice viewers to enter a paid-for mode.)
AllowGuestFreePreview boolean Required. Allows non-registered members to enter free preview mode with this user.
FreeTimeMins integer Required. The maximum amount of minutes the client can connect with the user. Possible values are 0 (unlimited), 5, 10, 15, 20, 30, 45
FreeTimePeriod integer Required. The maximum amount of minutes the client can connect with the user within this time period. Possible values are 0 (unlimited), 15, 30, 60, 120, 180, 240, 300, 240, 360, 420, 480, 540, 600, 660, 720, 780, 840, 900, 960, 1020, 1080, 1140, 1200, 1260, 1320, 1380, 1440
DoesGroup boolean Indicates the user is offering group cam & chat for a reduced rate.
GroupPPM decimal The price for group cam in credits per minute.
DoesPrivate boolean Indicates the user is offering private one-to-one cam & chat.
PrivatePPM decimal The price for private cam in credits per minute.
ChatOnly boolean Required. Indicates this user will only provide typed text-chat only.
DoesAudioPrivate boolean Required. Indicates this user wishes to send audio in private mode.
DoesAudioGroup boolean Required. Indicates this user wishes to send audio in group mode.
DoesAudioFree boolean Required. Indicates this user wishes to send audio in free preview mode.
WebcamCategoryID integer Required. The directcam category ID. See the GetDirectcamCategories method.
ShowLiveThumbnails aws: ShowLiveThumbnails Required. The ShowLiveThumbnails settings of this user.
Title string Required. The specific Profile Title for DirectCam.

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 POST method with serialized JSON in the request body.

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

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 requires the following scope:

Scope
account_webcam_bookings

Samples

POST method

https://api-sandbox.adultwork.com/v1/DirectCam/SaveSettings


Authorization: bearer {your-access-token}
{
"DoesFree": true,
"AllowGuestFreePreview": true,
"FreeTimeMins": 0,
"FreeTimePeriod": 0,
"DoesGroup": true,
"GroupPPM": 2,
"DoesPrivate": true,
"PrivatePPM": 3,
"ChatOnly": false,
"DoesAudioPrivate": true,
"DoesAudioGroup": true,
"DoesAudioFree": true,
"WebcamCategoryID": 1,
"ShowLiveThumbnails": {
"Waiting": true,
"FreePreview": true,
"GroupMode": true,
"ReplaceProfilePic": false
},
"Title": "Come and join me."
}

POST as Group manager

https://api-sandbox.adultwork.com/v1/Groups/DirectCam/SaveSettings


Authorization: bearer {your-access-token}
{
"UserID": 123456,
"DoesFree": true,
"AllowGuestFreePreview": true,
"FreeTimeMins": 0,
"FreeTimePeriod": 0,
"DoesGroup": true,
"GroupPPM": 2,
"DoesPrivate": true,
"PrivatePPM": 3,
"ChatOnly": false,
"DoesAudioPrivate": true,
"DoesAudioGroup": true,
"DoesAudioFree": true,
"WebcamCategoryID": 1,
"ShowLiveThumbnails": {
"Waiting": true,
"FreePreview": true,
"GroupMode": true,
"ReplaceProfilePic": false
},
"Title": "Come and join me."
}

Response

PropertyTypeDescription
DoesFree boolean Indicates this user will cam & chat for free (clothed, to entice viewers to enter a paid-for mode.)
AllowGuestFreePreview boolean Allows non-registered members to enter free preview mode with this user.
FreeTimeMins integer The maximum amount of minutes the client can connect with the user. Possible values are 0 (unlimited), 5, 10, 15, 20, 30, 45
FreeTimePeriod integer The maximum amount of minutes the client can connect with the user within this time period. Possible values are 0 (unlimited), 15, 30, 60, 120, 180, 240, 300, 240, 360, 420, 480, 540, 600, 660, 720, 780, 840, 900, 960, 1020, 1080, 1140, 1200, 1260, 1320, 1380, 1440
DoesGroup boolean Indicates the user is offering group cam & chat for a reduced rate.
GroupPPM decimal The price for group cam in credits per minute.
DoesPrivate boolean Indicates the user is offering private one-to-one cam & chat.
PrivatePPM decimal The price for private cam in credits per minute.
ChatOnly boolean Indicates this user will only provide typed text-chat only.
DoesAudioPrivate boolean Indicates this user wishes to send audio in private mode.
DoesAudioGroup boolean Indicates this user wishes to send audio in group mode.
DoesAudioFree boolean Indicates this user wishes to send audio in free preview mode.
WebcamCategoryID integer The directcam category ID. See the GetDirectcamCategories method.
ShowLiveThumbnails aws: ShowLiveThumbnails The ShowLiveThumbnails settings of this user.
Title string The specific Profile Title for DirectCam.

Response Sample

The following example returns a result of a users' settings.

{
"DoesFree": true,
"AllowGuestFreePreview": true,
"FreeTimeMins": 0,
"FreeTimePeriod": 0,
"DoesGroup": true,
"GroupPPM": 2,
"DoesPrivate": true,
"PrivatePPM": 3,
"ChatOnly": false,
"DoesAudioPrivate": true,
"DoesAudioGroup": true,
"DoesAudioFree": true,
"WebcamCategoryID": 1,
"ShowLiveThumbnails": {
"Waiting": true,
"FreePreview": true,
"GroupMode": true,
"ReplaceProfilePic": false
},
"Title": "Come and join me."
}

<DirectCamSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DirectCam">
<AllowGuestFreePreview>true</AllowGuestFreePreview>
<ChatOnly>false</ChatOnly>
<DoesAudioFree>true</DoesAudioFree>
<DoesAudioGroup>true</DoesAudioGroup>
<DoesAudioPrivate>true</DoesAudioPrivate>
<DoesFree>true</DoesFree>
<DoesGroup>true</DoesGroup>
<DoesPrivate>true</DoesPrivate>
<FreeTimeMins>0</FreeTimeMins>
<FreeTimePeriod>0</FreeTimePeriod>
<GroupPPM>2.0000</GroupPPM>
<PrivatePPM>3.0000</PrivatePPM>
<ShowLiveThumbnails>
<FreePreview>true</FreePreview>
<GroupMode>true</GroupMode>
<ReplaceProfilePic>false</ReplaceProfilePic>
<Waiting>true</Waiting>
</ShowLiveThumbnails>
<Title>Come and join me.</Title>
<WebcamCategoryID>1</WebcamCategoryID>
</DirectCamSettings>