I am using the “Create a form” endpoint of the Video Ask API to dynamically create new forms. Is it possible to set the recording method to “uploaded” vs “streaming” using the api?
Thanks
Hi
That’s good to know
Ah, glad it was an easy fix,
Our support team also let me know that, to do this, you just have to add ""metadata":{"live_recording":false}"
to the body of the POST
request whenever you are creating a form. The same works for the PATCH
request if you want to update a form. If you want to turn back on the streaming, just set that to true
This is the curl to create a form with the recording method set to uploading
curl --location 'https://api.videoask.com/forms' \ --header 'Authorization: Bearer {{token}}' \ --header 'Content-Type: application/json' \ --header 'organization-id: {{organization_id}}' \ --data '{ "title": "My VideoAsk", "show_contact_name": false, "show_contact_email": false, "show_contact_phone_number": false, "show_consent": false, "requires_contact_name": false, "requires_contact_email": false, "requires_contact_phone_number": false, "requires_consent": false, "metadata":{ "live_recording":false } }'
Let me know if you end up utilizing this in the future, too!
That is really useful information
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.