Skip to main content
REST API reference

Security jit-privileges endpoint overview

Overview

This API is used to retrieve and configure relevant information related to the Global JIT (Just In Time) privilege configuration in the cluster.

Examples

Retrieving the configured JIT privilege settings for the cluster

Retrieves the JIT privileges for the cluster or a filtered list (for a specific SVM).

# The API:
GET "/api/security/jit-privileges"

# The call
curl -k https://<mgmt-ip>/api/security/jit-privileges

# the response:
{
"records": [
{
  "owner": {
    "uuid": "b009a9e7-4081-b576-7575-ada21efcaf16",
    "name": "Cserver",
    "_links": {
      "self": {
        "href": "/api/svm/svms/b009a9e7-4081-b576-7575-ada21efcaf16"
      }
    }
  },
  "application": "ssh",
  "_links": {
    "self": {
      "href": "/api/security/jit-privileges/b009a9e7-4081-b576-7575-ada21efcaf16/ssh"
    }
  }
}
]
}