ApiData().GetBehaviorSecurityLevel

Returns the integer security level for the given Behavior.

Description

This function gets the security level for a particular identified Behavior. The range is 0 – n, where 0 is “open” to anyone, and any value above 0 must be met with a matching or greater user security level for the Behavior to be invoked. Note that a higher Behavior security level can override a lower Exuder security level.

Example Usage (C#)


int level = _core.ApiData().GetBehaviorSecurityLevel(147);

Parameters

int

id

The numeric integer id of the Behavior being queried for its security level.

Returns

level The number value representing the security level of the given Behavior

ApiData()