sessions
Retrieving Sessions within your Organization
Retrieve recorded movement session(s).
GET
https://487q8d7goe.execute-api.us-east-1.amazonaws.com/production/sessions
Obtains all of the recorded movement sessions (excluding free sessions) or specific sessions within your Valor account based on query parameters.
Query Parameters
athleteID
String
Valor ID of a specific athlete to retrieve subset of sessions (can be extracted from athletes call)
limit
String
Limited number of total sessions to return (used for pagination)
Headers
Authorization*
String
JWT Bearer Token for authentication: Bearer <JWT token>
X-Continuation-Token*
String
Continuation token required for paginating requests. Can be found within the response. Default value should be an empty string encoded as a JSON
Note: When retrieving multiple sessions it is highly recommended to paginate your requests using the limit & X-Continuation-Token parameters. See examples below:
Response (Body) Parameters
Session ID: The unique ID of each session
Date: The date the session was recorded (UTC)
s3Key: The s3Key associated with the session. Note: This is critical to use to obtain IK or Valor report data.
Duration: The duration of the session in seconds
Athlete ID: The unique athlete ID of each session
Assessment ID: The unique assessment ID of each session (shared with sessions recorded under the same assessment) or labeled as "singleExercise" if the session was a stand alone recording
Exercise ID: The unique exercise ID of each session
Session Name: The name of the session (usually the name of an exercise)
Last updated