Address
| Field | Type | Required | Description |
|---|---|---|---|
street | String | mandatory | |
zip | String | mandatory | |
city | String | mandatory | |
canton | String | optional | Only allowed for Switzerland addressesJU, VD, VS, ZH, ... |
countryCode | String | optional | CH, FR, DE, IT, ...Default: CH |
Exemple
Required fields only
{
"street": "Rue du centre 18",
"zip": "1000",
"city": "Lausanne"
}
All fields
{
"street": "Rue du centre 18",
"zip": "1000",
"city": "Lausanne",
"canton": "VD",
"countryCode": "CH"
}