# Contacts

If a company has a registered designated contact, this endpoint will list those contacts.

### Example URL:

```
https://api2.redflagalert.net/v4/companies/01777777/contacts/
```

### JSON Structure:

```javascript
{
    "data": [
        {
            "attributes": {
                "telephone": "03444930787",
                "email": null
            },
            "type": "contact",
            "id": "645323-3833508046"
        }
    ]
}
```

### Attributes

| Field Key   | Description                                                         | Notes |
| ----------- | ------------------------------------------------------------------- | ----- |
| `telephone` | The listed telephone number if known. Will return '`null`' if none. |       |
| `email`     | The listed email address if known. Will return '`null`' if none.    |       |
