curl --request POST \
--url https://api.getversive.com/api/v1/questions/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"questions": [
{
"study_id": "study_123",
"content": "Question 1",
"type": "text"
},
{
"study_id": "study_123",
"content": "Question 2",
"type": "choice",
"props": {
"options": [
"A",
"B"
]
}
}
]
}
'