Skip to main content
GET
/
teammates
cURL
curl --request GET \
  --url https://api.alpharun.com/api/v1/teammates \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "teammates": [
      {
        "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"
        ]
      },
      {
        "id": "550e8400-e29b-41d4-a716-446655440003",
        "first_name": "Jane",
        "last_name": "Smith",
        "email": "[email protected]",
        "manager_id": null,
        "teammate_group_ids": []
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

List of teammates

data
object