This API operation returns the active other service categories an AdultWork.com user can set.
GET
/v1/lists/getOtherServices
Property | Type | Description |
---|---|---|
This operation does not accept any parameters. |
This endpoint is using the HTTP GET method.
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.
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.
https://api-sandbox.adultwork.com/v1/lists/getOtherServices
?apiKey={your-api-key}
Property | Type | Description |
---|---|---|
OtherServices |
aws:OtherService | Array of OtherService. |
The following example returns the other services.
[
{
"CategoryId": 1,
"Category": "Photographers"
},
{
"CategoryId": 2,
"Category": "Website Designers"
},
{
"CategoryId": 3,
"Category": "Drivers"
}
]
<ArrayOfOtherService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.OtherServices">
<OtherService>
<Category>Photographers</Category>
<CategoryID>1</CategoryID>
</OtherService>
<OtherService>
<Category>Website Designers</Category>
<CategoryID>2</CategoryID>
</OtherService>
<OtherService>
<Category>Drivers</Category>
<CategoryID>3</CategoryID>
</OtherService>
</ArrayOfOtherService>