Description
When sending a PATCH request to create registration questions for a scheduled Zoom meeting, nothing is created.
Error
No error. I tried returning the response and it came back null.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth
Which Endpoint/s?
Update Registration Questions
How To Reproduce (If applicable)
Steps to reproduce the behavior:
Using auth token send a PATCH REST request to add the questions. Here is the JSON I’m using:
{
"questions": [
{
"field_name": "job_title",
"required": "true"
},
{
"field_name": "phone",
"required": "true"
},
{
"field_name": "industry",
"required": "true"
},
{
"field_name": "org",
"required": "true"
}
],
"custom_questions": [
{
"title": "Country",
"type": "single",
"answers": [
"United States", "Canada"
],
"required": "true"
},
{
"title": "Registered By (For Oracle internal use only)",
"type": "short",
"required": "false"
}
]
}
Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.