> For the complete documentation index, see [llms.txt](https://docs.navigaglobal.com/print-overview/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.navigaglobal.com/print-overview/configuration/agents.md).

# Agents

Here are the configurations for **Print Overview NCS Agent** and **Print Overview NP Agent** which is the agents that supplies the Print Overview with data.

| Key              | Type             | Description                                                                                                                                                     |
| ---------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| displayName      | string           | The display name for the agent, used e.g for sign in / sign out                                                                                                 |
| environments     | array of objects | An object has a two properties, "displayName" which is the name we display for the environment and "endpoint" which is the endpoint on where the server resides |
| categoryNames    | array of strings | Only for NCS Agent! Support to change the pages category name, default value is \["Pages"]                                                                      |
| useClientRequest | boolean          | Only for NP Agent! If true, the client will do the request to Newspilot server, if false Dashboard will do the requests                                         |

#### Example:

```javascript
{
    "displayName": "Name we want to display for the user",
    "environments": [
        {
            "displayName": "Server A",
            "endpoint": "https://endpoint-url"
        },
        {
            "displayName": "Server B",
            "endpoint": "https://endpoint-url"
        }
    ],
    "categoryNames": ["Pages"] // Only for NCS agent!
    "useClientRequest": true // Only for NP agent!
}
```

{% hint style="info" %}
The Newspilot agent requires Newspilot 5.0 or newer.&#x20;
{% endhint %}

{% hint style="info" %}
Naviga Print Production integration uses the Editorial Web Service interface which must be accessible via the Dashboard environment. Keep this in mind when IP access restrictions are in use with the Editorial Web Service.&#x20;
{% endhint %}
