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

Get Group Members

This API operation allows the group manager to get the members of a group

URL / Endpoint

Need help with Postman?

GET /v1/Groups/getGroupMembers

Request

PropertyTypeDescription
ReturnMemberProfiles boolean Returns the profile information for each member.

Request Information

HTTP Method / Verb

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

This endpoint has the following optional headers:

HeadersValue
X-MaskImages 1 What's this?

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_groups

Samples

GET method

https://api-sandbox.adultwork.com/v1/Groups/GetGroupMembers

Authorization: bearer {your-access-token}

Response

PropertyTypeDescription
Group aws:ManageGroup The group data.
Members Array of aws:ManageGroupMember The member data.

Response Sample

The following shows a sample list of hotlists returned by the API.


{
  "Group": {
    "GroupID": 12345,
    "GroupName": "Best of AW",
    "ManagerNickname": "MyNickname",
    "ManagerEmail": "aaa@aaa.com",
    "ManagerMobileNumber": "04444444444"
  },
  "Members": [
    {
      "UserID": 123,
      "Nickname": "Joe",
      "Rating": 0,
      "UnreadEmail": 0,
      "UnreadEscortBooking": 0,
      "PendingWebcamBooking": 0,
      "PendingPhoneChatBooking": 0,
      "ProfileHits": 1000,
      "Balance": 1000,
      "Profile": null
    },
    {
      "UserID": 1234,
      "Nickname": "Jane",
      "Rating": 123,
      "UnreadEmail": 456,
      "UnreadEscortBooking": 0,
      "PendingWebcamBooking": 6,
      "PendingPhoneChatBooking": 0,
      "ProfileHits": 999,
      "Balance": 400,
      "Profile": null
    }
  ]
}

<GroupMemberResult>
    <Group>
        <GroupID>12345</GroupID>
        <GroupName>Best of AW</GroupName>
        <ManagerEmail>aaa@aaa.com</ManagerEmail>
        <ManagerMobileNumber>004444444444</ManagerMobileNumber>
        <ManagerNickname>MyNickname</ManagerNickname>
    </Group>
    <Members>
        <Member>
            <Balance>1000</Balance>
            <Nickname>Joe</Nickname>
            <PendingPhoneChatBooking>0</PendingPhoneChatBooking>
            <PendingWebcamBooking>0</PendingWebcamBooking>
            <Profile i:nil="true" />
            <ProfileHits>1000</ProfileHits>
            <Rating>0</Rating>
            <UnreadEmail>0</UnreadEmail>
            <UnreadEscortBooking>0</UnreadEscortBooking>
            <UserID>123</UserID>
        </Member>
        <Member>
            <Balance>1000</Balance>
            <Nickname>Jane</Nickname>
            <PendingPhoneChatBooking>0</PendingPhoneChatBooking>
            <PendingWebcamBooking>2</PendingWebcamBooking>
            <Profile i:nil="true" />
            <ProfileHits>1000</ProfileHits>
            <Rating>999</Rating>
            <UnreadEmail>99</UnreadEmail>
            <UnreadEscortBooking>0</UnreadEscortBooking>
            <UserID>1234</UserID>
        </Member>
    </Members>
</GroupMemberResult>