I've been reading through the Google documentation and trying to pan out the limitations of the Google Sheets API for named ranges. The following are the easy parts:
Retrieving the value within a named range: getRangeByName
Removing a named range: removeNamedRange
Creating a named range: setNamedRange
This is all I've found, but I'm wondering if there's a way to return a list of available named ranges within a spreadsheet. My googling has left me without any clear approach.
Thanks.