BeyondTrust · JSON Structure

Beyondtrust Update Request Body Structure

Request body for approving, denying, or cancelling a request.

Type: object Properties: 2 Required: 1
AccessAccess ManagementComplianceCredentialsPrivileged AccessSecuritySecretsZero Trust

UpdateRequestBody is a JSON Structure definition published by BeyondTrust, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Action Reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/beyondtrust/refs/heads/main/json-structure/beyondtrust-update-request-body-structure.json",
  "name": "UpdateRequestBody",
  "description": "Request body for approving, denying, or cancelling a request.",
  "type": "object",
  "properties": {
    "Action": {
      "type": "string",
      "description": "The action to perform on the request.",
      "enum": [
        "Approve",
        "Deny",
        "Cancel"
      ],
      "example": "Approve"
    },
    "Reason": {
      "type": "string",
      "description": "Reason for the action.",
      "example": "Approved for maintenance window"
    }
  },
  "required": [
    "Action"
  ]
}