Skip to main content

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 @RachelMRW 

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 @RachelMRW Were you able to give this solution a try? Let us know how it worked for you! :grinning:


Reply