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

Notes to an activity are not exported

On Garmin Connect Web, Notes you enter on an Activity are not exported when you select All Activities > Export CSV. 

Is there a way to get notes included in the CSV export? Or is there another way to get Notes exported? 

Thanks in advance!

dgg

  • I tried today to get my data out, but I get: "Uncaught ReferenceError: jQuery is not defined

        <anonymous> debugger eval code:1" using the script provided in this thread. Any ideas what I am doing wrong?
  • That error is when you run it with the Web closed. You need to log-in and open Console there. But with latest change, proxy was replaced by header, so you would get next error anyway.

    Now new headers are required:

    jQuery.ajax({
        headers: {'DI-Backend':'connectapi.garmin.com', 'Authorization':'Bearer ' + JSON.parse(localStorage.token).access_token},
        url: 'https://connect.garmin.com/activitylist-service/activities/search/activities?limit=20&start=0',
        success: (i) => {console.dir(i)}
    })

  • Thanks! ThumbsupThumbsup:⁠-⁠) I will try with the new headers and report back.

    EDIT: Works that way! Thank you again!