Skip to main content
GET
/
transforms
/
details
Get Transform Details
curl --request GET \
  --url https://api.streamkap.com/transforms/details \
  --header 'Authorization: Bearer <token>'
{
  "result": [
    {
      "metrics": {
        "tasks": 123,
        "latency": 123,
        "status": "<string>",
        "duration": 123,
        "start_time": 123,
        "end_time": "<string>",
        "checkpoints": {
          "job_id": "<string>",
          "counts": {},
          "summary": {},
          "latest": {
            "id": 123,
            "status": "<string>",
            "is_savepoint": true,
            "trigger_timestamp": 123,
            "latest_ack_timestamp": 123,
            "state_size": 123,
            "end_to_end_duration": 123,
            "alignment_buffered": 123,
            "num_subtasks": 123,
            "num_acknowledged_subtasks": 123
          },
          "history": [],
          "operator_breakdown": []
        }
      },
      "config": [
        {}
      ],
      "id": "<string>",
      "name": "<string>",
      "transform_type": "fan_out",
      "sql_query": "<string>",
      "topic": "<string>",
      "topic_id": "<string>",
      "topics": [
        "<string>"
      ],
      "topic_ids": [
        "<string>"
      ]
    }
  ],
  "page": 1,
  "page_size": 10,
  "total": 123,
  "has_next": true
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

result
TransformDetailsEntity · object[]
required
page
integer
default:1
page_size
integer
default:10
total
integer | null
has_next
boolean | null