How can I bring back the old panel for adding sites to the cloudflare system

What is the name of the domain?

What is the isssue you’re encountering

What are the steps to reproduce the issue?

I faced such a problem, cloudflare changes the interface (and functionality) personally, the new form of addition is not convenient for me, since I have to perform unnecessary actions due to the fact that I need to change my IP, I have to go into settings, DNS, and so on, when in the old form it was all done step by step and during one initial site setting

Screenshot of the error

Hi there,

You can’t go back to the old interface, but if you’re looking for an easy way to add new zones, that doesn’t change even if/when the dashboard changes, check the API:

curl --request POST \
  --url https://api.cloudflare.com/client/v4/zones \
  --header 'Authorization: Bearer undefined' \
  --header 'Content-Type: application/json' \
  --data '{
  "account": {
    "id": "023e105f4ecef8ad9ca31a8372d0c353"
  },
  "name": "example.com",
  "type": "full"
}'

Take care.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.