1. Third Party Cookies
    1. Overview
    2. Password Reset
    1. System Notifications
    2. Data Manager Notifications
    1. Troubleshooting Load Times
    2. Cache Warming
    1. Updating License Key
    1. Web Accessibility
    1. Menu Tuning
    2. Cache Warming
    1. Password Settings

Curator API: API Docs

Integration

/integration/commands

Returns a list of all commands

Returns:

array

Example Response:

    {
        "result": "Success",
        "msg": [
            {
                "id": 1,
                "name": "Test Command",
                "description": "This command refreshes extracts",
                "type": "tabcmd",
                "arguments": "",
                "schedule": "",
                "created": {
                    "date": "2017-08-17 21:08:02.000000",
                    "timezone_type": 3,
                    "timezone": "UTC"
                },
                "updated": {
                    "date": "2017-08-17 21:08:02.000000",
                    "timezone_type": 3,
                    "timezone": "UTC"
                }
            }
        ]
    }

/integration/runCommand

Runs the specified command and returns its output.

Parameters:

id Identifier of the command to run.

Returns:

array

Example Response:

    {
        "result": "Success",
        "msg": "Status not provided by command"
    }

/integration/runScript

Runs the specified script and returns its output.

Parameters:

id Identifier of the script to run.

Returns:

array

Example Response:

    {
        "result": "Success",
        "msg": "Status not provided by script"
    }

/integration/scripts

Returns a list of all scripts

Returns:

array

Example Response:

    {
        "result": "Success",
        "msg": [
            {
                "id": 1,
                "name": "Test Script",
                "description": "This Script Does a Thing",
                "language": "python",
                "arguments": "",
                "schedule": "",
                "created": {
                    "date": "2017-08-17 21:11:44.000000",
                    "timezone_type": 3,
                    "timezone": "UTC"
                },
                "updated": {
                    "date": "2017-08-17 21:11:44.000000",
                    "timezone_type": 3,
                    "timezone": "UTC"
                }
            }
        ]
    }

/integration/apiRelay

Kicks off an API relay request

Returns:

array