Skip to main content
POST
/
api
/
knowledge
/
search
/
clicks
Log Click Event
curl --request POST \
  --url https://{tenant}.app.big-panda.ai/api/knowledge/search/clicks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search_log_id": "<string>",
  "action": "<string>",
  "product_id": "<string>",
  "section": "<string>",
  "rank": 0,
  "score": 0
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.big-panda.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API-Token aus dem Big-Panda-Admin-UI unter Einstellungen → API-Keys. Header: Authorization: Bearer <token>.

Body

application/json

One user action on a search result (Block C.1.6 / Theme 9).

Sent by the widget after pin/unpin/find_similar/ask_advisor/click. Best-effort logging — failure here doesn't surface to the caller.

search_log_id
string
required
action
string
required
product_id
string
required
section
string
required
rank
integer
default:0
score
number
default:0

Response

Successful Response