AuthenticationResponse

Response containing the JWT token for authenticated API access

Properties

Name Type Description
token string JWT token string to include in subsequent API request headers
user object
View JSON Schema on GitHub

JSON Schema

automation-anywhere-authenticationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationResponse",
  "title": "AuthenticationResponse",
  "type": "object",
  "description": "Response containing the JWT token for authenticated API access",
  "properties": {
    "token": {
      "type": "string",
      "description": "JWT token string to include in subsequent API request headers"
    },
    "user": {
      "$ref": "#/components/schemas/UserSummary"
    }
  }
}