I am trying to access the values in a Google Spreadsheet that is localized to Russian. In Russian, Sheet is Лист and so the default sheet names are Лист1 and Лист2, etc.
The method I am using to retrieve values from a specific sheet is to use the spreadsheet values API and A1 notation to limit results to the specific sheet:
/v4/spreadsheets/{spreadsheet-it}/values/Лист1!1:1
However, the Google API returns a 400 bad request. If I manually rename the sheet to use only latin characters (like Sheet1) it works just fine.
But this is too much to ask our users using languages with different alphabets - I'm hoping there is a way I am not seeing in the documentation to access values for a specific sheet using the numeric Sheet ID rather than the sheet title?
Thanks!