This entity represents the agent associated with an athlete. This entity is returned as a nested object within the athlete object in the getAthlete API response.
Field | Type | Description |
id | VARCHAR(45) | Unique identifier of the agent |
VARCHAR(512) | Email address of the agent | |
firstname | VARCHAR(256) | First name of the agent |
lastname | VARCHAR(256) | Last name of the agent |
gender | ENUM('MALE','FEMALE') | Gender of the agent (optional) |
pictureUrl | VARCHAR(512) | URL of the agent’s profile picture (optional) |
Example:
The agent field appears inside the athlete object as shown below
"agent": {"id": "00000004","email": "agent.expert1@collegepipe.com","firstname": "Agent","lastname": "Expert1","gender": "MALE","pictureUrl": null},