Skip to content
Start here

Behaviours

Get all behaviors and associated configuration
zero_trust.risk_scoring.behaviours.get(BehaviourGetParams**kwargs) -> BehaviourGetResponse
GET/accounts/{account_id}/zt_risk_scoring/behaviors
Update configuration for risk behaviors
zero_trust.risk_scoring.behaviours.update(BehaviourUpdateParams**kwargs) -> BehaviourUpdateResponse
PUT/accounts/{account_id}/zt_risk_scoring/behaviors
ModelsExpand Collapse
class BehaviourGetResponse:
behaviors: Dict[str, Behaviors]
description: str
enabled: bool
name: str
risk_level: Literal["low", "medium", "high"]
One of the following:
"low"
"medium"
"high"
class BehaviourUpdateResponse:
behaviors: Dict[str, Behaviors]
enabled: bool
risk_level: Literal["low", "medium", "high"]
One of the following:
"low"
"medium"
"high"