Contact
Attributes
| Name | Type | Description |
|---|---|---|
| customer_id | integer | Contact related customer ID |
| first_name | string | Contact first name |
| last_name | string | Contact last name |
| function | string | Contact function |
| string | Contact email | |
| phone | string | Contact phone number |
| address_line_1 | string | Contact address |
| postal_code | integer | Contact postal code |
| city | string | Contact city |
| region | string | Contact region |
| country_code | string | Contact 2-letters country code |
Relationships
| Name | Resource type | Description |
|---|---|---|
| organization | organization | Organization 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"
}
}
}
}
}