API -Calendar Feed URL

Jump to solution
burgessa
Community Novice

I am trying to streamline process for onboarding new students and would like to script Outlook 365 to have their Canvas Calendar Subscription.

Is it possible to obtain users Calendar Feeds using API?

Labels (1)
0 Likes
1 Solution
pklove
Community Champion

Yes.  You use the Get user profile endpoint (/api/v1/users/:user_id/profile).  But to include the calendar feed, you need to be the user, so add the as_user_id parameter, so as an admin user you can use:

    /api/v1/users/self/profile?as_user_id=user_id

View solution in original post