Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Successful Response
Get paginated sources response.
curl --request GET \
--url https://api.streamkap.com/sources/{source_id} \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true,
"result": [
{
"name": "<string>",
"connector": "<string>",
"id": "<string>",
"connector_display_name": "<string>",
"created_timestamp": "<string>",
"sub_id": "<string>",
"tenant_id": "<string>",
"service_id": "<string>",
"config": {},
"topic_ids": [
"<string>"
],
"topic_map": {},
"topics": [
"<string>"
],
"tasks": [
123
],
"connector_status": "<string>",
"task_statuses": {}
}
]
}
curl --request GET \
--url https://api.streamkap.com/sources/{source_id} \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"page_size": 10,
"total": 123,
"has_next": true,
"result": [
{
"name": "<string>",
"connector": "<string>",
"id": "<string>",
"connector_display_name": "<string>",
"created_timestamp": "<string>",
"sub_id": "<string>",
"tenant_id": "<string>",
"service_id": "<string>",
"config": {},
"topic_ids": [
"<string>"
],
"topic_map": {},
"topics": [
"<string>"
],
"tasks": [
123
],
"connector_status": "<string>",
"task_statuses": {}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful Response
Get paginated sources response.
Was this page helpful?