Skip to main content
GET
/
athletes
/
{athleteId}
Gets Athlete in Organization
curl --request GET \
  --url https://api.uplift.ai/v1/athletes/{athleteId} \
  --header 'Authorization: Bearer <token>'
{
  "athlete": {
    "id": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "date_of_birth": "2023-11-07T05:31:56Z",
    "email": "<string>",
    "height": 123,
    "weight": 123,
    "custom_attributes": {},
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

athleteId
string
required

The unique identifier for the athlete record to be retrieved.

Response

Successful retrieval of athlete data.

athlete
object