Lister les certificats SSL du compte.
Paramètres entrants | Description | Type | Expression régulière | Obligatoire |
start | Numéro du premier certificat à lister (pagination) | int | Non | |
number | Nombre de certificats à lister (pagination) (0 = tous) | int | Non | |
valid | Lister les certificats actuellement valides | boolean | Non | |
expired | Lister les certificats actuellement expirés | boolean | Non | |
to_renew | Lister les certificats actuellement renouvelables | boolean | Non | |
pending | Lister les certificats actuellement en cours de création | boolean | Non |
Paramètres sortants | Description | Valeurs possibles |
SSL_Certificate | Certificat dont les données sont les suivantes | |
handle | Handle du certificat | |
status | Statut du certificat | REGISTERED DELETED CANCELED PENDING |
product | Produit du certificat | certificat Alpha SSL certificat Domain SSL certificat Wildcard SSL certificat Organization SSL certificat Business SSL |
adminContact | Contact administratif du certificat | |
billingContact | Contact facturation du certificat | |
regDate | Date d’enregistrement du certificat | |
expDate | Date d’expiration du certificat |
Code Erreurs
Code d’erreur | Paramètre | Message | Valeur | Commentaire |
501 | paramètre entrant | Command syntax error | The ‘paramètre entrant’ element has an invalid value according to its data type | La balise ‘paramètre entrant’ est vide ou son contenu n’a pu être validé par l’expression régulière |
730 | No response | No response | Pas de réponse |
Commande
<api> […] <command> <ssl_list> <start>…</start> <number>…</number> <valid>…</valid> <expired>…</expired> <to_renew>…</to_renew> <pending>…</pending> </ssl_list> </command> </api> |
Réponse à la commande
<?xml version="1.0" encoding="utf-8"?> <api> <response> <trID>…</trID> <result code="…"> <msg>…</msg> </result> </response> <resData> <ssl_listData> <SSLCertificate> <handle>…</handle> <status>…</status> <product>…</product> <adminContact>…</adminContact> <billingContact>…</billingContact> <regDate>…</regDate> <expDate>…</expDate> </SSLCertificate> […] </ssl_listData> </resData> </api> |