I had the same problem with fenix 3 hr. Here is what i did
1. Connected my watch to pc via USB cable
2. Went to this folder [Garmin fenix 3 HR/Garmin/Workouts/Schedule] in explorer
3. Deleted all the files in there
4. Disconnected the watch from computer.
All the training schedule was gone from my watch.
Hopefully this helps :):)
How to delete training schedule from watch
I had the same problem with fenix 3 hr. Here is what i did
1. Connected my watch to pc via USB cable
2. Went to this folder [Garmin fenix 3 HR/Garmin/Workouts/Schedule] in explorer
3. Deleted all the files in there
4. Disconnected the watch from computer.
All the training schedule was gone from my watch.
Hopefully this helps :):)
How to delete training schedule from watch
I had the same problem with fenix 3 hr. Here is what i did
1. Connected my watch to pc via USB cable
2. Went to this folder [Garmin fenix 3 HR/Garmin/Workouts/Schedule] in explorer
3. Deleted all the files in there
4. Disconnected the watch from computer.
All the training schedule was gone from my watch.
Hopefully this helps :):)
I can't seem to find any way to remove a training plan (previously scheduled) from the garmin connect calendar.
Can anyone provide help on how to do this?
My first guess would have been to go to "Training Plans > Scheduled" but nothing is showing there even though the different workouts are showing in my calendar.
Any solution to this issue?
Many thanks
Jose
I have the same problem.
in Scheduled Training Plans and active menu no plan appears, but in the calendar appears the plan with all work out.
I can not erase the training plan from the calendar
I had the exact same issue. It is clearly a bug. Scheduling a training plan clearly isn't a fully transactional action and when it fails, it may leave your account in a "middle" state with calendar events (that you must delete one by one but can not fully get deleted since the begin and end will still stay there) but no Scheduled Training Plan.
It took some effort but I managed to get mine deleted but I am a web developer and this might be overly technical. Anyway, may help Garmin to identify the issue.
---
If you open the Garmin Connect website and use web browser (e.g. Chrome), open Inspector (right click and Inspect), go to Networking tab, change to Calendar page and the month that your training plan begins and look for a request with path or similar to /modern/proxy/calendar-service/year/2018/month/8, click it and go to Response tab and search for "trainingPlanId":
E.g. main was "trainingPlanId":33447745
Then I created and deleted a training to see what URL was called to delete it and it turned out to be GET request (shouldn't be, but anyway identified the API method). For me that was:
https://connect.garmin.com/modern/proxy/trainingplan-service/trainingplan/delete/33447745?_=1537705865506 (do not use it, replace the numbers)
Change the number 33447745 to what you found as trainingPlanId in your calendar events and the latter number seems to be running for each API call. So on the Network tab, just scroll to the very end and you probably see a request like count?_=1537705962513 (they seem to occur with some interval).
So take that number and add 1 and use that as the _=value on the previous URL and just open a new tab and go to that URL.
I had the exact same issue. It is clearly a bug. Scheduling a training plan clearly isn't a fully transactional action and when it fails, it may leave your account in a "middle" state with calendar events (that you must delete one by one but can not fully get deleted since the begin and end will still stay there) but no Scheduled Training Plan.
It took some effort but I managed to get mine deleted but I am a web developer and this might be overly technical. Anyway, may help Garmin to identify the issue.
---
If you open the Garmin Connect website and use web browser (e.g. Chrome), open Inspector (right click and Inspect), go to Networking tab, change to Calendar page and the month that your training plan begins and look for a request with path or similar to /modern/proxy/calendar-service/year/2018/month/8, click it and go to Response tab and search for "trainingPlanId":
E.g. main was "trainingPlanId":33447745
Then I created and deleted a training to see what URL was called to delete it and it turned out to be GET request (shouldn't be, but anyway identified the API method). For me that was:
https://connect.garmin.com/modern/proxy/trainingplan-service/trainingplan/delete/33447745?_=1537705865506 (do not use it, replace the numbers)
Change the number 33447745 to what you found as trainingPlanId in your calendar events and the latter number seems to be running for each API call. So on the Network tab, just scroll to the very end and you probably see a request like count?_=1537705962513 (they seem to occur with some interval).
So take that number and add 1 and use that as the _=value on the previous URL and just open a new tab and go to that URL.