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
}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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?