Skip to main content
POST
/
users
/
{id}
/
risk-assessments
/
clear
Clear risk assessment assessors for a specific user
curl --request POST \
  --url https://{tenantDomain}/api/v2/users/{id}/risk-assessments/clear \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connection": "<string>",
  "assessors": [
    "new-device"
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the user to clear assessors for.

Maximum string length: 1024

Body

connection
string
required

The name of the connection containing the user whose assessors should be cleared.

Required string length: 1 - 128
Pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
assessors
enum<string>[]
required

List of assessors to clear.

Minimum array length: 1

Assessors to clear.

Available options:
new-device

Response

Risk assessment assessors cleared.