Python Google Sheets API: Hide or Show Sheet

Jul 25, 2019
credentials = ...service = build('sheets', 'v4', credentials=credentials)sheet = service.spreadsheets()SPREADSHEET_ID = ...SHEET_ID = ...body = {    'requests': [        {            'updateSheetProperties': {                'properties': {                    'sheetId': SHEET_ID,                    'hidden': True                },                'fields': 'hidden'            }        }    ]}# Using sheet.values().batchUpdate will trigger: Invalid JSON payload received. Unknown name "requests": Cannot find field.result = sheet.batchUpdate(spreadsheetId=SPREADSHEET_ID,                           body=body).execute()

NOTE: Refer Setup and Access Google Sheets API With Python.

NOTE: Refer Get Sheet Id by Sheet Name.

References:

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.