Skip to main content
GET
/
api
/
client
/
v2
/
user
/
team-members
List Team Members
curl --request GET \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/client/v2/user/team-members \
  --header 'X-API-Key: <api-key>'
{
  "status": "success",
  "data": [
    {
      "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60",
      "updatedAt": "2025-06-30T14:02:07.456Z",
      "createdAt": "2025-06-30T14:02:07.456Z",
      "firstName": "<string>",
      "lastName": "<string>",
      "name": "<string>",
      "notifyAboutNewPosts": true,
      "notifyAboutNewDms": true,
      "isDmHistorySynced": true,
      "linkedInProfile": {
        "id": "<string>",
        "updatedAt": "2025-06-30T14:02:07.456Z",
        "createdAt": "2025-06-30T14:02:07.456Z",
        "name": "<string>",
        "email": "<string>",
        "avatarUrl": "<string>",
        "linkedInUrl": "<string>"
      },
      "selectedWorkspaceSettings": {
        "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60",
        "updatedAt": "2025-06-30T14:02:07.456Z",
        "createdAt": "2025-06-30T14:02:07.456Z",
        "isCreator": true,
        "isLinkedInProfileConnected": true,
        "user": {
          "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60",
          "name": "<string>"
        }
      }
    }
  ],
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Query Parameters

registrationType
enum<string>

Optional filter by how the user entered the system. NEW_USER_SIGNUP — self-signup; NEW_USER_WORKSPACE_INVITE_CONFIRM — accepted a team invite; SUB_USER — managed account created by another user.

Available options:
NEW_USER_SIGNUP,
NEW_USER_WORKSPACE_INVITE_CONFIRM,
SUB_USER

Response

status
enum<string>
required

Response status

Available options:
success
data
object[]
required

Users of the current user's team

message
string
required

Success message

Example:

"Operation completed successfully"