Skip to main content

User profile object

  • id - integer - required
  • username - string - required
  • email - string - required
  • firstName - string - optional
  • lastName - string - optional
  • location - string - optional
  • dateOfBirth - string - optional - yyyy-MM-dd'T'HH:mm:ss.SSSZZZ
  • bikeType - string - optional - available values:
    • ROAD RACING BIKE
    • SPORTIVE BIKE
    • TOURING BIKE
    • CYCLO-CROSS BIKE
    • ADVENTURE BIKE
    • MOUNTAIN BIKE
    • HYBRID BIKE
    • FOLDING BIKE
  • distanceTraveledPerYear - string - optional - available values:
    • LESS THAN 1000 KM
    • LESS THAN 5000 KM
    • LESS THAN 10000 KM
    • MORE THAN 10000 KM
  • avatar - string - optional - absolute url
  • estimatedRideTimePerDay - string - optional - available values:
    • LESS THAN HOUR
    • LESS THAN 2 HOURS
    • LESS THAN 4 HOURS
    • MORE THAN 4 HOURS
  • statistics - object - optional
    • time - integer - seconds
    • distance - integer - meters
  • gender - string - optional - available values:
    • Man
    • Woman
    • Other
  • weight - string - integer
  • height - string - integer
  • isScout - boolean
  • scoutPoints - integer | null

Example#

{
"id": 17,
"username": "Moj nick",
"email": "przemo@blue-focus.com",
"firstName": "Marcinos",
"lastName": "Programistyczny",
"location": "Katowiceeee",
"dateOfBirth": "1979-04-25T00:00:00+00:00",
"bikeType": "TOURING BIKE",
"distanceTraveledPerYear": "LESS THAN 10000 KM",
"estimatedRideTimePerDay": "MORE THAN 4 HOURS",
"avatar": "https://velo-test.blue-focus.info/images/avatar/607/574/cfd/607574cfda06a681754610.jpeg",
"statistics": {
"time": 5098,
"distance": 95120
},
"gender": "Man",
"weight": 100,
"height": 200
}