Nest Changelog

1.43.3 PRE

10/3/2023

1.43.4 PRE

10/3/2023

GET /workouts/formats/{format}/percentiles/{duration}

Get workouts percentiles for format + duration combos.

Guard: none

Response Body
{
  data: List<{
    position?: number,
    users?: List<{
      age?: number,

city?: string, color?: List<string>, firstName?: string, gender?: string, lastName?: string, nickname?: string, profileImage?: string, status?: string, userId?: number, }>, value?: number, }>, }

GET /workouts/formats/{format}/percentiles/{duration}

Get workouts percentiles for format + duration combos.

Guard: loggedIn

Response Body
{
  data: List<{
    position?: number,
    users?: List<{
      age?: number,
+     badge?: {
+       guid?: string,
+       image?: string,
+     },
      city?: string,
      color?: List<string>,
      firstName?: string,
      gender?: string,
      lastName?: string,
      nickname?: string,
      profileImage?: string,
      status?: string,
      userId?: number,
    }>,
    value?: number,
  }>,
}
WORK IN PROGRESS