Currently, AFAIK, when performing google form batchUpdate
using the google forms API v1
, we are only able to set the shuffle
property of choiceQuestions
, while for textQuestions
there are no options to set the response validations
, like if I want to use regex match
as validation
.
For Example, the request body looks like this:
{
"requests": [
{
"createItem": {
"item": {
"questionItem": {
"question": {
"choiceQuestion": {
"shuffle": false
},
"textQuestion": {
"paragraph": false
/*no other parameters to set*/
}
}
}
}
}
}
]
}
Am I missing something? Or is this feature not implemented yet?