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

Alternative Practices

This API operation returns the the active alternative practices an AdultWork.com user can set.

URL / Endpoint

Need help with Postman?

GET /v1/lists/getAlternativePractices

Request

PropertyTypeDescription
This operation does not accept any parameters.

Request Information

HTTP Method / Verb

This endpoint is using the HTTP GET method.

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/lists/getAlternativePractices
  ?apiKey={your-api-key}

Response

PropertyTypeDescription
AlternativePractices aws:AlternativePractice Array of AlternativePractice.

Response Sample

The following example returns the alternative practices.

[
{
"PracticeId": 10,
"Practice": "Adult Mothering"
},
{
"PracticeId": 1,
"Practice": "Bondage & Discipline"
},
{
"PracticeId": 5,
"Practice": "Cross Dressing"
}
]
<ArrayOfAlternativePractice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.AlternativePractices">
<AlternativePractice>
<Practice>Adult Mothering</Practice>
<PracticeID>10</PracticeID>
</AlternativePractice>
<AlternativePractice>
<Practice>Bondage &amp; Discipline</Practice>
<PracticeID>1</PracticeID>
</AlternativePractice>
<AlternativePractice>
<Practice>Cross Dressing</Practice>
<PracticeID>5</PracticeID>
</AlternativePractice>
</ArrayOfAlternativePractice>