Skip to main content
GET
/
v2
/
teams
/
{team_id}
/
users
/
{user_id}
Get Team User
curl --request GET \
  --url https://public.api.serval.com/v2/teams/{team_id}/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "teamId": "<string>",
    "userId": "<string>",
    "role": "TEAM_USER_ROLE_UNSPECIFIED",
    "createdAt": "2023-11-07T05:31:56Z",
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

team_id
string
required
user_id
string
required

Query Parameters

id
string

Composite identifier ({team_id}:{user_id}). Alternative to team_id + user_id.

Response

Success

data
data · object