Contact object
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. |
suburb | string | City or suburb name. Limited to 128 characters. |
state | string | State (or Town/City for NZ). Limited to 128 characters. |
postcode | string required | ZIP or postal code. Limited to 128 characters. |
countryCode | string | The two-character ISO 3166-1 country code. |
phoneNumber | string | The phone number, in E.123 format. Limited to 32 characters. |
Example Contact object
UK
1 { 2 "name": "Joe Consumer", 3 "line1": "1 Market Street", 4 "suburb": "MANCHESTER", 5 "postcode": "M4 3AT", 6 "countryCode": "GB", 7 "phoneNumber": "07000000000" 8 }