Address.detailed

Request

Fields when send to the api inside a request.

Field Type Description
street String A String value
nr String A String value
zipcode String A String value
city String A String value
country Country 2 letter ISO representation of a country (string)

Response

Fields when returned by the api in a response.

Field Type Description
street String A String value
nr String A String value
zipcode String A String value
city String A String value
country Country 2 letter ISO representation of a country (string)
position Coordinates Coordinates of a place in the world

Examples

Request

When used inside a request.

Example 1

{
    "street": "Sint-Denijslaan",
    "nr": "96",
    "zipcode": "9000",
    "city": "Gent",
    "country": "BE"
}

Response

When returned in a response.

Example 1

{
    "street": "Sint-Denijslaan",
    "nr": "96",
    "zipcode": "9000",
    "city": "Gent",
    "country": "BE",
    "position": {
        "latitude": 1.54361,
        "longitude": 0.45645
    }
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.2.0 stable