Skip to main content
GET
/
connections
/
{nameOrId}
/
ai-session-analyzer-rule
Get AI Session Analyzer Rule by Connection
curl --request GET \
  --url https://use.hoop.dev/api/connections/{nameOrId}/ai-session-analyzer-rule
{
  "connection_names": [
    "pgdemo",
    "mysql-prod"
  ],
  "created_at": "2024-07-25T15:56:35.317601Z",
  "description": "Blocks high-risk SQL commands",
  "id": "15B5A2FD-0706-4A47-B1CF-B93CCFC5B3D7",
  "name": "block-dangerous-queries",
  "risk_evaluation": {
    "high_risk_action": "block_execution",
    "low_risk_action": "allow_execution",
    "medium_risk_action": "allow_execution"
  },
  "updated_at": "2024-07-25T15:56:35.317601Z"
}

Path Parameters

nameOrId
string
required

The name or ID of the connection

Response

OK

connection_names
string[]

Connection names this rule applies to

Example:
["pgdemo", "mysql-prod"]
created_at
string

The time the resource was created

Example:

"2024-07-25T15:56:35.317601Z"

description
string

Optional description

Example:

"Blocks high-risk SQL commands"

id
string<uuid>

The resource identifier

Example:

"15B5A2FD-0706-4A47-B1CF-B93CCFC5B3D7"

name
string

Unique name for the rule

Example:

"block-dangerous-queries"

risk_evaluation
object

Risk evaluation actions per level

updated_at
string

The time the resource was updated

Example:

"2024-07-25T15:56:35.317601Z"