Create Athlete
Creates a new athlete within an organization. The user must provide at least the first_name field. Other standard attributes, while optional, are recommended. Any additional attributes that are not part of the predefined standard attributes should be included as custom_attributes.
Custom Attributes
custom_attributes(object)- A set of user-defined key-value pairs for additional attributes.
- Key Format Rules:
- Must contain only alphanumeric characters, underscores (
_), or dashes (-). - Must start with a letter or underscore.
- Must avoid spaces and special characters (e.g.,
@,#,$, etc.). - Reserved keywords (e.g.,
first_name,last_name,date_of_birth,email,height,weight, andDOB) cannot be used as keys.
- Must contain only alphanumeric characters, underscores (
- Value:
- Must be a string.
Example Request Body
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The first name of the athlete.
Note: This is the minimum required field.
The last name of the athlete.
The date of birth of the athlete, formatted as YYYY-MM-DD
The athlete's email address.
The height of the athlete, in inches.
The weight of the athlete, in pounds (lbs).
Dominant arm. Allowed values: left, right, both.
left, right, both Dominant leg. Allowed values: left, right, both.
left, right, both Primary sport or activity. Allowed values: baseball, softball, tennis, basketball, golf.
baseball, softball, tennis, basketball, golf Positions for the athlete's activity. Requires activity to be set. baseball/softball: pitcher, catcher, first_base, second_base, third_base, shortstop, left_field, center_field, right_field, designated_hitter. basketball: point_guard, shooting_guard, small_forward, power_forward, center.
Competition level. Allowed values: youth, high_school, college, professional.
youth, high_school, college, professional A set of custom key-value attributes. Keys must be strings, and values must also be strings.
Response
Athlete created successfully.