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": []
}
]
}
}Returns a list of all teammates in the company.
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": []
}
]
}
}