athletes

Retrieving Athletes

Retrieve athlete(s).

GET https://487q8d7goe.execute-api.us-east-1.amazonaws.com/production/athletes

Obtains all the athletes or a specific athlete within your Valor account.

Query Parameters

NameTypeDescription

athleteID

String

ID of specific athlete for focused search

Headers

NameTypeDescription

Authorization*

String

JWT Bearer Token for authentication: Bearer <JWT token>

{
    "statusCode": 200,
    "body": [{"ValorID": id, "FirstName": first_name, "LastName": last_name},
             {"ValorID": id2, "FirstName": first_name2, "LastName": last_name2},
        ...] //Array of athletes found
}

Last updated