cURL
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" } }
Retrieves the information of an athlete in an organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique identifier for the athlete record to be retrieved.
Successful retrieval of athlete data.
Show child attributes