Request success
The JSON response is a dictionary containing a one or more elements "X" whose value is a dictionary containing the following keys:
| Key | Possible values | Description | Type |
| Insee | 75113 | Insee code of the city | STRING(10) |
| Localite | Paris | City name | STRING(50) |
| Pays | FR | ISO 2 Code of the country | STRING(2) |
| CodePostal | 75013 | Postal code of the city name | STRING(10) |
| Status | OK/KO | Indicate if the city if valid of the given birthdate OK or KO | STRING(2) |
Example :
{
"1": {
"Localite": "EVRY",
"Pays": "FR",
"Insee": "89162",
"CodePostal": "89140",
"Status": "OK"
},
"3": {
"Localite": "EVRY",
"Pays": "FR",
"Insee": "91228",
"CodePostal": "91080",
"Status": "KO"
},
"2": {
"Localite": "EVRY",
"Pays": "FR",
"Insee": "91228",
"CodePostal": "91000",
"Status": "KO"
}
}
Related to