This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can't retire gear

I bought new running shoes and added them to the app. When I try to retire the old ones - it only shows "edit" and "remove" options - there is no option to retire them.

If it matters, I added my old shoes to the app relatively late - so the app thinks I only ran about 180 Km with it.

Thanks

  • A distance doesn't matter, there should be the retire option also with low KM.

    Try editing them or refreshing the page.

     

    But if it won't appear, then you can change it by Console, copy request for Edit as fetch (from Network tab) and set it as retired (gearStatusName and dateEnd), will look like this, 'body' is a list with all parameters for a gear:

    fetch('https://connect.garmin.com/modern/proxy/gear-service/gear/###', {
        'headers': { 'Content-Type': 'application/json', 'NK': 'NT', 'X-HTTP-Method-Override': 'PUT' },
    
        'body': '{ "gearPk":###, "uuid":"###", "userProfilePk":###,
                   "gearTypeName":"Shoes", "gearStatusName":"retired",
                   "customMakeModel":"###", "dateBegin":"###", "dateEnd":"###",
                   "createDate":"###", "updateDate":"###" }',
    
        'method': 'POST'
    });