Author Topic: I need help for api , delete domain  (Read 527 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
I need help for api , delete domain
« on: February 05, 2024, 10:56:49 AM »
 This code not working for me, plz give code thanks
       
       $domain = "sub.example.com";
         $data = array("key" => "thoken",'action' => 'delete','user' => 'admin','type' => 'subdomain','name' => $domain,'path' => '/'.$domain);
                  $url = "https://ip:2304/v1/admindomains";
                  $ch = curl_init();
                  curl_setopt($ch, CURLOPT_URL, $url);
                  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
                  curl_setopt ($ch, CURLOPT_POSTFIELDS, http_build_query($data));
                  curl_setopt ($ch, CURLOPT_POST, 1);
                  $response = curl_exec($ch);
                  curl_close($ch);


Offline
*****
Re: I need help for api , delete domain
« Reply #1 on: February 05, 2024, 12:31:41 PM »
Please validate if you have the ports open for the use of the api

Offline
*
Re: I need help for api , delete domain
« Reply #2 on: April 11, 2024, 11:57:50 AM »
the port is open