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
The unique identifier for the athlete.
The first name of the athlete.
The last name of the athlete.
The date of birth of the athlete.
The athlete's email address.
The height of the athlete, in inches.
The weight of the athlete, in pounds (lbs).
A set of custom key-value attributes. Keys must be strings, and values must also be strings.
The timestamp when the athlete record was created.
The timestamp when the athlete record was last updated.