API - Disable Menu Navigation Options

Jump to solution
bscranda
Community Novice

I'm trying to automate a process where a new course is created that hides all menu navigation options except for Files, but I haven't been able to find an API call that will allow me to do this. Am I just missing this or is this not possible through the API?

1 Solution
MattHanes
Community Champion

The API information for those tabs is located here:

Tabs - Canvas LMS REST API Documentation

I never did figure out how to hide multiple tabs with one call so I always just did it separately for each item.

It uses a PUT command for the URL, so here is an example on how to hide the "Assignments" tab:

<yourinstitution>.instructure.com/courses/<course#>/tabs/assignments?hidden=true

View solution in original post