Data Access Exit Point
The Data Access Exit Point is your custom Node.js script that can restrict the agent from accessing certain data that you’ve allowed in the Data Access tab.
The script will receive an object with various properties, such as:
sqlStatement: The SQL statement that the agent is requesting to run.
sqlComponents: Parsed elements of the SQL statement if parsing is successful.
identity: Identity information based on the user’s Authentication.
sessionData: Data from the session as supplied by the Session Data Exit Point.
The exit point can throw an error to indicate to the agent that it is not allowed to access certain data.
Â