curl --location --request POST '/sheets/v2/spreadsheets//sheets_batch_update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"requests": [
{
"addSheet": {
"properties": {
"title": "string",
"index": 0
}
}
},
{
"copySheet": {
"source": {
"sheetId": "string"
},
"destination": {
"title": "string"
}
}
},
{
"deleteSheet": {
"sheetId": "string"
}
}
]
}'{
"code": 0,
"msg": "Success",
"data": {
"replies": [
{
"addSheet": {
"properties": {
"sheetId": "string",
"title": "string",
"index": 0
}
},
"copySheet": {
"properties": {
"sheetId": "string",
"title": "string",
"index": 0
}
},
"deleteSheet": {
"result": true,
"sheetId": "string"
}
}
]
}
}