Attributes
Attribute | Type | Description |
---|---|---|
name | string required | Full name of contact. Limited to 255 characters |
line1 | string required | First line of the address. Limited to 128 characters |
line2 | string | Second line of the address. Limited to 128 characters. |
area1 | string required | AU : SuburbNZ : Town or cityUK : Postal townUS : CityCA : CityLimited to 128 characters |
area2 | string | NZ: suburb UK: village or local area. Limited to 128 characters |
region | string required | AU : StateNZ : RegionUK : CountyUS : StateCA : Province or TerritoryLimited to 128 characters |
postcode | string required | ZIP or postal code. Limited to 128 characters. |
countryCode | string required | The ISO 3166-1 country code. Limited to 2 characters |
phoneNumber | string | The phone number, in E.123 format. Limited to 32 characters. |
{
"name": "Joe Consumer",
"line1": "Level 5",
"line2": "406 Collins Street",
"area1": "Melbourne",
"region": "VIC",
"postcode": "3000",
"countryCode": "AU",
"phoneNumber": "0400 000 000"
}
{
"name": "Joe Consumer",
"line1": "75 Queen St",
"area1": "Auckland",
"area2": "Auckland Central",
"region": "Auckland",
"postcode": "1010",
"countryCode": "NZ",
"phoneNumber": "0200 000 000"
}
{
"name": "Joe Consumer",
"line1": "3655 Lawton St",
"area1": "San Francisco",
"region": "CA",
"postcode": "94122",
"countryCode": "US",
"phoneNumber": "(415) 200-0000"
}