I want to add a filter to the title on my google sheet. I found THIS ANSWER using C # and tried to build JSON from it. This is what I came up with but no luck:
{'AddFilterViewRequest' : {
'AddFilterViewResponse': {
'Filter' : {
'FilterView': {
'title' : "Hide rows with errors",
'range': {'sheetId': sheet_id,
'startRowIndex': 0,
'endRowIndex': 2,
'startColumnIndex': 1,
'endColumnIndex': 31}
}
}
}
}}
Does anyone know that I'm wrong?
source
share