PUT
/
analytics
/
llm
curl --request PUT \
  --url http://localhost/api/v1/analytics/llm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "<string>",
  "tool_identifier": "<string>",
  "api_key": "<string>",
  "host_uri": "<string>",
  "host_health_uri": "<string>",
  "mask_pii": true,
  "config_json": {}
}'
{
  "status": "Transaction completed successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
tool_identifier
string
required

Identifier for the analytics tool

api_key
string
required

API Key for the tool

Minimum length: 10
host_uri
string
required

Host URI for the analytics tool

project_id
string | null
default:default

Project ID, defaults to 'default'

Maximum length: 100
host_health_uri
string | null

Health check URI

mask_pii
boolean | null
default:false

Flag to mask PII

config_json
object | null

Additional configuration

Response

200
application/json

Successful Response

Standard success response for PUT and DELETE operations

status
string
default:Transaction completed successfully