I am needing to automate the typeform scheduling to open/close at a certain time each week. Is this possible? How would I go about it?
Thanks!
I am needing to automate the typeform scheduling to open/close at a certain time each week. Is this possible? How would I go about it?
Thanks!
Hello
You can write a script and use Typeform Create API to update your form is_public
setting.
You can find docs on the API on developer portal: https://developer.typeform.com/create/reference/update-form-patch/
You could make a request like this:
curl -X PATCH \
-H "Authorization:Bearer <YOUR-TYPEFORM-PERSONAL-TOKEN>" \
-H "Content-Type: application/json" \
-d '-{"op":"replace","path":"/settings/is_public","value":true}]' \
https://api.typeform.com/forms/<FORM-ID> \
-v
Hi
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.