CustomerAddress

Structure

FieldTypeRequiredDescription
idIntegertrueUnique identifier for the

CustomerAddress.

primaryBooleanfalseSets if it is primary or not.
communicationLocationTypeCommunicationLocationTypetrueGives more information about that address
streetStringfalseThe email address itself.
cityStringfalsePossible remarks about this email.
stateProvNameStringfalse
stateProvCodeStringfalseISO 3166-2
postalCodeStringfalse
countryCodeStringfalseISO 3166-1 alpha-2
remarkStringfalsePossible remarks about this address.

JSON representation

{
	"id": 1,
	"primary": true,
	"communicationLocationType": {
         "id": 1,
         "code": "1",
         "name": "Home"
     },
	"street": "Sepulveda",
	"city": "Barcelona",
	"stateProvName": "Barcelona",
	"stateProvCode": "ES-B",
	"postalCode": "08030",
	"countryCode": "ES",
	"remark": null
}