BeyondTrust · JSON Structure

Beyondtrust Credential Response Structure

Credentials retrieved for an approved access request.

Type: object Properties: 2
AccessAccess ManagementComplianceCredentialsPrivileged AccessSecuritySecretsZero Trust

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

Properties

Password PrivateKey

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-credential-response-structure.json",
  "name": "CredentialResponse",
  "description": "Credentials retrieved for an approved access request.",
  "type": "object",
  "properties": {
    "Password": {
      "type": "string",
      "nullable": true,
      "description": "The retrieved password. Only present for password-based accounts.",
      "example": "Xk2!mP9@nQ7#rT5"
    },
    "PrivateKey": {
      "type": "string",
      "nullable": true,
      "description": "SSH private key. Only present for SSH key-based accounts.",
      "example": null
    }
  }
}