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

Send Email

This API operation can send an email to an AdultWork.com user.

URL / Endpoint

Need help with Postman?

POST /v1/Email/Send

POST /v1/Groups/Email/Send (See Group manager)

Request

PropertyTypeDescription
RecipientUserID integer Required. The ID of the email.
ReplyToEmailID integer

If not supplied a new email is created otherwise it will create a reply.

Subject string Required. The subject of the email.
Body string Required. The body of the email.
AllowFacePicture boolean Allow the face picture to be viewed by the recipient.

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_communications

Samples

POST method

https://api-sandbox.adultwork.com/v1/Email/Send

Authorization: bearer {your-access-token} { "RecipientUserID" : 123, "Subject" : "Auctioned items", "Body" : "Hey, I've seen you've auctioned a few items on the shop recently, do you have any more of those? I'd love to get me some of those." }

POST method

https://api-sandbox.adultwork.com/v1/Email/Send

Authorization: bearer {your-access-token} { "UserID" : 123456, "RecipientUserID" : 123, "Subject" : "Auctioned items", "Body" : "Hey, I've seen you've auctioned a few items on the shop recently, do you have any more of those? I'd love to get me some of those." }

Response

PropertyTypeDescription
This will return no model just a 200 OK HTTP Status code.

Response Sample

The following example shows a sample returned by the API.

HTTP Status Code: 200 OK