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

Get Enjoys

This operation returns a list of AdultWork.com Enjoys (Preferences).

URL / Endpoint

Need help with Postman?

GET /v1/lists/getEnjoys

Request

PropertyTypeDescription
CountryID integer Supplying a Country ID will filter the Enjoys list, returning only those valid for that Country.

Request Information

HTTP Method / Verb

Parameters can only 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.

Sample

GET method

https://api-sandbox.adultwork.com/v1/lists/getEnjoys
  ?apiKey={your-api-key}

Response

PropertyTypeDescription
Enjoys Array of aws:ProfileEnjoy List of Enjoys/Preferences.

Response Sample

The following example shows a shortened response from this method.

[
   {
      "EnjoyID":10,
      "EnjoyName":"Oral "
   },
   {
      "EnjoyID":11,
      "EnjoyName":"\"A\" Levels"
   },
   {
      "EnjoyID":12,
      "EnjoyName":"BDSM"
   },
   {
      "EnjoyID":13,
      "EnjoyName":"Voyeurism"
   }
]          
                
<ArrayOfProfileEnjoy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.ProfileEnjoy">
  <ProfileEnjoy>
    <EnjoyID>10</EnjoyID>
    <EnjoyName>Oral </EnjoyName>
  </ProfileEnjoy>
  <ProfileEnjoy>
    <EnjoyID>11</EnjoyID>
    <EnjoyName>"A" Levels</EnjoyName>
  </ProfileEnjoy>
  <ProfileEnjoy>
    <EnjoyID>12</EnjoyID>
    <EnjoyName>BDSM</EnjoyName>
  </ProfileEnjoy>
  <ProfileEnjoy>
    <EnjoyID>13</EnjoyID>
    <EnjoyName>Voyeurism</EnjoyName>
  </ProfileEnjoy>
</ArrayOfProfileEnjoy>