Agents

Here will we list all the agents configuration

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:

{
    "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!
}

The Newspilot agent requires Newspilot 5.0 or newer.

Last updated