Get a specific team user by team ID and user ID, or by composite ID.
cURL
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>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Composite identifier ({team_id}:{user_id}). Alternative to team_id + user_id.
Success
Show child attributes
Was this page helpful?