Athletes
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
.
POST
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
application/json
Response
200
application/json
Athlete created successfully.
The response is of type object
.