REST Cluster Nodes

Splunk SOAR (On-premises) cluster information can be read via an HTTP GET request. This endpoint is read-only and does not accept HTTP POST requests. Access to this endpoint requires authentication and system settings permissions.

/rest/cluster_node

Cluster information such as node name, status, Id, version, etc.

Syntax

https://<username>:<password>@<host>/rest/cluster_node

GET

Get cluster information.

Example curl request

Get cluster information.

curl -k -u username:password https://localhost/rest/cluster_node -G -X GET

Example response

A successful GET will return a JSON formatted list of key names and data.

{
    "count": 3,
    "data": [
        {
            "update_time": "2018-09-04T22:27:42.722084Z",
            "name": "1.2.3.4",
            "enabled": true,
            "server": true,
            "host": "1.2.3.4",
            "create_time": "2018-09-04T19:50:27.960889Z",
            "version": "4.0.1068",
            "online": true,
            "guid": "6c395b0f-5574-45e2-ac74-801d0ad8495c",
            "id": 3
        },
        {
            "update_time": "2018-09-04T22:28:05.027246Z",
            "name": "2.3.4.5",
            "enabled": true,
            "server": true,
            "host": "2.3.4.5",
            "create_time": "2018-09-04T19:49:18.185595Z",
            "version": "4.0.1068",
            "online": true,
            "guid": "e9ba83af-be4e-4cb9-9264-32971ef80b55",
            "id": 2
        },
        {
            "update_time": "2018-09-04T22:28:06.517752Z",
            "name": "3.4.5.6",
            "enabled": true,
            "server": true,
            "host": "3.4.5.6",
            "create_time": "2018-09-04T19:48:03.988898Z",
            "version": "4.0.1068",
            "online": true,
            "guid": "41200aa3-1e9c-4436-b77f-d9471263572f",
            "id": 1
        }
    ],
    "num_pages": 1
}