• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question I can't add a plan with the rest client api

TryLex

New Pleskian
Server operating system version
Version 18.0.49
Plesk version and microupdate number
Version 18.0.49
<?php session_start(); $data = [ "name" => $_SESSION['nom'], "login" => $_SESSION['username'], "status" => 0, "email" => $_SESSION['email'], "locale" => "fr-FR", "owner_login" => $_POST['login'], "external_id" => $_SESSION['id_client'], "password" => "changeme1Q**", "type" => "customer", "PlanReference" => [ "properties" => [ "name" => [ "type" => "string", "example" => "Unlimited" ] ] ] ]; $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL => "https://panel.nfytech.fr:8443/api/v2/clients", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => json_encode($data), CURLOPT_HTTPHEADER => [ "Content-Type: application/json" ], CURLOPT_USERPWD => "Admin:*************************" ]); $response = curl_exec($curl); $err = curl_error($curl); if ($err) { echo "Erreur cURL : $err"; } else { // Vérifier le code de statut HTTP $http_status = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ($http_status >= 200 && $http_status < 300) { echo "Votre client à été creer avec succès !"; } elseif ($http_status = 409) { echo "Le compte client existe déjà"; } else { echo "Erreur lors de la création du client. Code d'erreur HTTP : $http_status"; } } curl_close($curl);
help me pls
 
Ok. The PlanReference does not belong in the body when creating a client. You assign a Service Plan to a domain (subscription), not to a client. So you have to make a two separate API calls:
  1. https://yourdomain:8443/api/v2/clients to add a client
  2. https://yourdomain:8443/api/v2/domain to add a domain (subscription) with a reference to the Service plan
 
Ok. The PlanReference does not belong in the body when creating a client. You assign a Service Plan to a domain (subscription), not to a client. So you have to make a two separate API calls:
  1. https://yourdomain:8443/api/v2/clients to add a client
  2. https://yourdomain:8443/api/v2/domain to add a domain (subscription) with a reference to the Service plan
can you write the code in php for me pls
 
Back
Top