oSETAUTORENEW

Permet de mettre un domaine en renouvellement automatique lorsqu’il arrive à expiration.



Exemple d’appel (c#) : Namebay.Soap.Domain est le nom de la référence au web service

commande

Namebay.Soap.Domain.Domain L_oDomain = new soap.namebay.com.Namebay.Soap.Domain.Domain();

// Authentification
L_oDomain.AuthenticationHeaderValue = new soap.namebay.com.Namebay.Soap.Domain.AuthenticationHeader();
L_oDomain.AuthenticationHeaderValue.sLogin = "YourLogin";
L_oDomain.AuthenticationHeaderValue.sPassword = "YourPassword";

bool domainHasAutoRenew;

Namebay.Soap.Domain.ApiResponse L_oApiResponse = L_oDomain.oSetAutoRenew(“namebay.com”, out domainHasAutoRenew)