curl --request POST \
--url https://api.streamkap.com/logs/summary \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"connector_name": "<string>",
"namespace_name": "<string>",
"timestamp": "<string>",
"entity_id": "<string>",
"log_section": "<string>",
"entity_type": "source",
"log_uuid": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Generate and store a structured summary for a single log entry.
curl --request POST \
--url https://api.streamkap.com/logs/summary \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"connector_name": "<string>",
"namespace_name": "<string>",
"timestamp": "<string>",
"entity_id": "<string>",
"log_section": "<string>",
"entity_type": "source",
"log_uuid": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Example: 2025-07-30T07:51:48.000000Z
Required only when log_uuid is not provided
source, destination UUID of the log entry, if available
Successful Response
Was this page helpful?