# 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.    |       |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.redflagalert.net/company-resources/contacts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
