Skip to main content
GET
/
api
/
v1
/
tap
/
logs
Get tap run history
curl --request GET \
  --url http://localhost:8080/api/v1/tap/logs \
  --header 'x-api-key: <api-key>'
[
  {
    "tapName": "<string>",
    "runTime": "<string>",
    "status": "success",
    "recordCount": 123,
    "dataType": "<string>",
    "logs": "<string>",
    "error": "<string>",
    "pushToPipeline": true,
    "durationMs": 123
  }
]

Authorizations

x-api-key
string
header
required

Optional API key for authentication (enabled via application.yaml)

Query Parameters

name
string
required

Response

200 - application/json

Array of run log entries

tapName
string
runTime
string
status
enum<string>
Available options:
success,
failure
recordCount
integer
dataType
string
logs
string
error
string
pushToPipeline
boolean
durationMs
integer<int64>