Organization
Attributes
| Name | Type | Description |
|---|---|---|
| customer_id | integer | Organization related customer ID |
| name | string | Organization name |
| unit | string | Organization unit |
| phone | string | Organization phone number |
| address_line_1 | string | Organization address |
| postal_code | integer | Organization postal code |
| city | string | Organization city |
| region | string | Organization region |
| country_code | string | Organization 2-letters country code |
Relationships
| Name | Resource type | Description |
|---|---|---|
| contacts | contact (list) | Contacts attached to this organization. |
| default-contact | contact | Default 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"
}
}
}
}
}