Skip to main content

Organization

Attributes

NameTypeDescription
customer_idintegerOrganization related customer ID
namestringOrganization name
unitstringOrganization unit
phonestringOrganization phone number
address_line_1stringOrganization address
postal_codeintegerOrganization postal code
citystringOrganization city
regionstringOrganization region
country_codestringOrganization 2-letters country code

Relationships

NameResource typeDescription
contactscontact (list)Contacts attached to this organization.
default-contactcontactDefault contact attached to this organization.

Sample

{
"data": {
"type": "organization",
"id": "ABC012",
"links": {
"self": "https://api.nameshield.net/ssl/v2/organizations/ABC012"
},
"attributes": {
"name": "O'Keefe-Kuhn",
"unit": "IT",
"phone": "+33 132456798",
"customer_id": 9954,
"address_line_1": "870 Curt Isle Apt. 779\nEast Theresechester, WY 62565",
"postal_code": "49100",
"city": "Port Ferne",
"region": "Maine et Loire",
"country_code": "FR"
},
"relationships": {
"contacts": {
"links": {
"related": "https://api.nameshield.net/ssl/v2/organizations/ABC012/contacts"
},
"data": [
{
"type": "contact",
"id": "ABC012"
},
{
"type": "contact",
"id": "ABC012"
},
{
"type": "contact",
"id": "ABC012"
}
]
},
"default-contact": {
"links": {
"related": "https://api.nameshield.net/ssl/v2/organizations/ABC012/default-contact"
},
"data": {
"type": "contact",
"id": "ABC012"
}
}
}
}
}