Skip to main content

Contact

Attributes

NameTypeDescription
customer_idintegerContact related customer ID
first_namestringContact first name
last_namestringContact last name
functionstringContact function
emailstringContact email
phonestringContact phone number
address_line_1stringContact address
postal_codeintegerContact postal code
citystringContact city
regionstringContact region
country_codestringContact 2-letters country code

Relationships

NameResource typeDescription
organizationorganizationOrganization this contact is attached to

Sample

{
"data": {
"type": "contact",
"id": "ABC012",
"links": {
"self": "https://api.nameshield.net/ssl/v2/contacts/ABC012"
},
"attributes": {
"customer_id": 9954,
"first_name": "Dax",
"last_name": "Schowalter",
"function": "Bus Driver",
"email": "ramona.schuppe@hotmail.com",
"phone": "+33 123456789",
"address_line_1": "707 Gottlieb Inlet\nSouth Lianamouth, KS 66741-8328",
"postal_code": "49100",
"city": "Coyborough",
"region": "Maine et Loire",
"country_code": "FR"
},
"relationships": {
"organization": {
"links": {
"related": "https://api.nameshield.net/ssl/v2/contacts/ABC012/organization"
},
"data": {
"type": "organization",
"id": "ABC012"
}
}
}
}
}