Schedule Typeform Closing Weekly | Community
Skip to main content
Answered

Schedule Typeform Closing Weekly

  • September 18, 2021
  • 2 replies
  • 63 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!

Best answer by mathio-tf

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

 

View original

mathio-tf
Typeform
Forum|alt.badge.img+5
  • Typeform
  • September 20, 2021

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

 


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • September 24, 2021

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


Reply