Skip to main content
GET
/
team
/
{teamId}
/
member
/
{userId}
Get a member of a team
curl --request GET \
  --url https://us.cybedefend.com/team/{teamId}/member/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "[email protected]",
  "picture": "<string>",
  "role": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string<uuid>
required
teamId
string<uuid>
required

Response

Member of a team

id
string<uuid>
required

User unique identifier

firstName
string
required

User first name

lastName
string
required

User last name

email
string<email>
required

User email address

picture
string
required

User picture URL

role
string
required

User role in the organization