POST
/
logs
/
summary
Summarise Log
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>",
  "log_section": "<string>",
  "entity_id": "<string>",
  "entity_type": "source",
  "log_uuid": "<string>"
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Body

application/json
connector_name
string
required
namespace_name
string
required
timestamp
string
required

Example: 2025-07-30T07:51:48.000000Z

entity_id
string
required
log_section
string | null

Required only when log_uuid is not provided

entity_type
enum<string>
default:source
Available options:
source,
destination
log_uuid
string | null

UUID of the log entry, if available

Response

Successful Response

The response is of type any.