Answered

Schedule Typeform Closing Weekly

  • 18 September 2021
  • 2 replies
  • 48 views

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!

icon

Best answer by mathio 20 September 2021, 10:44

View original

2 replies

Userlevel 7
Badge +5

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

 

Userlevel 7
Badge +5

Hi @RachelMRW Were you able to give this solution a try? Let us know how it worked for you! :grinning:

Reply