Get risk summary

This method returns a summary of the PTA risk events.

URL

  • Make sure there are no spaces in the URL.

  • The following characters are not supported in URL values: + & %

  • If the URL includes a dot (.), add a forward slash (/) at the end of the URL. For example: api/Safes/MySafe/Members/user@cyber.com/

 
https://<IIS_Server_Ip>/PasswordVault/API/pta/API/Risks/Summary/

Resource information

HTTP method

GET

Content type

application/json

Header parameter

Parameter

Authorization

Type

String

Description

The JWT token that identifies the session.

Valid values

A session token that was returned from the “Logon” method.

Body parameters

None

Result

 

This is an example of the results.

[
{
"type": "RISK_RISKY_SPN",
"score": 70.0,
"attributes": [
{
"attributeType": "PRIVILEGED_ACCOUNT",
"amount": 3
}
]
},
{
"type": "RISK_UNCONSTRAINED_DELEGATION",
"score": 70.0,
"attributes": [
{
"attributeType": "ACCOUNT",
"amount": 2
}
]
}
]

 

Parameter Type Description

data

Array

Each risk type and its attributes

type String

Risk event type

  • unconstrained_delegation

  • risky_spn

score Integer Risk event score

attributes

Array

Attributes per risk type

attributes.amount

Integer

Number of open risk events per risk event type

attributes.attributeType

String

Type of the involved entity

  • account

  • privileged account

  • machine