CF API jumpstart new domain setups allow disable Universal SSL

For a privacy first initial domain setup on Cloudflare via CF API, I suggest adding a API flag to allow you to do that at initial jumpstart setup stage instead of having to do it via a separate CF API command like at Unique nameserver combinations per site? - #21 by eva2000

so when adding bulk domains to CF

for domain in $(cat domains.txt); do \
  curl -X POST -H "X-Auth-Key: $CF_API_KEY" -H "X-Auth-Email: $CF_API_EMAIL" \
  -H "Content-Type: application/json" \
  "https://api.cloudflare.com/client/v4/zones" \
  --data '{"name":"'$domain'","jump_start":true}' | tee -a result.txt; done

allow for an additional option to disable Universal SSL by default out of the box at the same time

2 Likes