BeyondTrust · JSON Structure

Beyondtrust Sign App In Request Structure

Authentication credentials for API sign-in.

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

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

Properties

ApplicationID APIKey

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-sign-app-in-request-structure.json",
  "name": "SignAppInRequest",
  "description": "Authentication credentials for API sign-in.",
  "type": "object",
  "properties": {
    "ApplicationID": {
      "type": "string",
      "description": "The Application ID registered in BeyondTrust.",
      "example": "myapp-api"
    },
    "APIKey": {
      "type": "string",
      "description": "The API key for the application.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    }
  },
  "required": [
    "ApplicationID",
    "APIKey"
  ]
}