Skip to main content
GET
/
teammates
/
{TEAMMATE_ID}
cURL
curl --request GET \
  --url https://api.alpharun.com/api/v1/teammates/{TEAMMATE_ID} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "teammate": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "first_name": "John",
      "last_name": "Doe",
      "email": "[email protected]",
      "manager_id": "660e8400-e29b-41d4-a716-446655440001",
      "teammate_group_ids": [
        "770e8400-e29b-41d4-a716-446655440002"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

TEAMMATE_ID
string
required

The teammate identifier, which can be either its UUID or its email. When using an email, the format should be alt:email:<email>.

Response

Teammate details

data
object