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. |
area1 | string required | UK : Postal town Limited to 128 characters. |
area2 | string | UK : Village or local area. Limited to 128 characters. |
region | string required | UK : County Limited to 128 characters. |
postcode | string required | 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. |
Example Contact object
1 { 2 "name": "Joe Consumer", 3 "line1": "Apartment 9", 4 "line2": "1 Market Street", 5 "area1": "Ancoats", 6 "area2": "Manchester", 7 "region": "Greater Manchester", 8 "postcode": "M4 3AT", 9 "countryCode": "GB", 10 "phoneNumber": "07000000000" 11 }