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

Update VitalStats

This API operation updates a user's VitalStats.

Please see the getQuestions endpoint for possible and valid answers.

URL / Endpoint

Need help with Postman?

PUT /v1/Interview/UpdateVitalStats

PUT /v1/Groups/Interview/UpdateVitalStats (See Group manager)

Request

PropertyTypeDescription
Height string The height of the user.
Ethnicity string The ethnicity of the user.
DressSize string The dress size of the user.
HairColour string The colour of the user's hair.
EyeColour string The colour of the user's eyes.
PubicHair string The type of pubic hair of the user.
ChestSize string The size of the user's chest.
CupSize string The size of the user's bra.
EnhancedSize string Indicates if the user has enhanced their breasts.

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 PUT 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
profile_interview

Samples

PUT method

https://api-sandbox.adultwork.com/v1/Interview/UpdateVitalStats

Authorization: bearer {your-access-token}
{
"Ethnicity" : "Asian", "DressSize" : "6", "Height" : "5'4", "ChestSize" : "32\"", "EnhancedSize" : "Natural", "CupSize" : "DD", "HairColour" : "Grey", "EyeColour" : "Green", "PubicHair" : "Brazilian"
}

PUT as Group manager

https://api-sandbox.adultwork.com/v1/Groups/Interview/UpdateVitalStats

Authorization: bearer {your-access-token}
{
"UserID" : 123456,
"Ethnicity" : "Asian", "DressSize" : "6", "Height" : "5'4", "ChestSize" : "32\"", "EnhancedSize" : "Natural", "CupSize" : "DD", "HairColour" : "Grey", "EyeColour" : "Green", "PubicHair" : "Brazilian"
}

Response

PropertyTypeDescription
HasVitalStats boolean Indicates if the user has VitalStats.
VitalStats aws:ProfileVitalStats The member's Vital Statistics. These are selected questions from the AdultWork.com Interview.

Response Sample

The following example shows the result that's returned by the API.

{
"HasVitalStats": true,
"VitalStats": {
"Ethnicity": "Asian",
"DressSize": "6",
"Height": "5'4",
"ChestSize": "32\" DD Natural",
"HairColour": "Grey",
"EyeColour": "Green",
"PubicHair": "Brazilian"
}
}

<ProfileVitalStatsOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Profile">
<HasVitalStats>true</HasVitalStats>
<VitalStats>
<ChestSize>32" DD Natural</ChestSize>
<DressSize>6</DressSize>
<Ethnicity>Asian</Ethnicity>
<EyeColour>Green</EyeColour>
<HairColour>Grey</HairColour>
<Height>5'4</Height>
<PubicHair>Brazilian</PubicHair>
</VitalStats>
</ProfileVitalStatsOutput>