Affichage les informations d’un contact.
| Paramètres entrants | Description | Type | Expression régulière | Obligatoire |
| contact_id | Identifiant de contact | String (min 3, max 10) | Oui |
| Paramètres sortants | Description | Valeurs possibles |
| contact_id | Identifiant de contact saisi par l’utilisateur | |
| password | Mot de passe du contact | |
| firstname | Prénom du contact | |
| lastname | Nom du contact | |
| orgname | Nom de l’organisation du contact | |
| street | Rue, voie du contact | |
| city | Ville du contact | |
| pc | Code postal du contact | |
| sp | Pays du contact | |
| cc | Code pays du contact | |
| voice | téléphone du contact | |
| Email du contact |
Code Erreurs
| Code d’erreur | Paramètre | Message | Valeur | Commentaire |
| 501 | contact_id | command syntax error | The ‘contact_id’ element has an invalid value according to its data type | String (min 3, max 10) |
| 510 | contact_id | object does not exist | contact_id (handle) |
Commande
| <api> […] <command> <contact_info> <contact_id>…</contact_id> </contact_info> </command> </api> |
Réponse à la commande
| <?xml version="1.0" encoding="utf-8"?> <api> <response> <trID>…</trID> <result code="…"> <msg>…</msg> </result> </response> <resData> <contact_infData> <contact_id>…</contact_id> <password>…</password> <firstname>…</firstname> <lastname>…</lastname> <orgname>…</orgname> <street>…</street> <city>…</city> <pc>…</pc> <sp>…</sp> <cc>…</cc> <voice>…</voice> <email>…</email> </contact_infData> </resData> </api> |