logging

Get all logs. Note that the logs will be returned in order from most recent to least recent.

Securityapi_key
Request
query Parameters
log_level
string

The log level of the log file. Note that, if this parameter is excluded, the log files will be returned in alphabetical order with respect to their log level.

Enum: "DEBUG" "ERROR" "INFO" "WARN"
page_number
integer <int64>
Default: 1

The page number for which to get logs. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
201

Success

403

Forbidden access

get/application-logs
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get all audit logs

Securityapi_key
Request
query Parameters
user_name
string <= 1000 characters

The name of the user that took the action for this entry.

action_type
string

The type of action that occurred for this Audit Log entry.

Enum: "CANCEL" "CREATE" "CONFIG_INSTALL" "CONNECT" "DELETE" "DISCONNECT" "EDIT" "EXPORT" "FORGOT_PASSWORD" "GET" "GET_ALL" "IMPORT" "LOCK" "DISABLE" "LOGIN" "LOGOUT" "RESET_PASSWORD" "RUN" "TEST" "UNLOCK"
target
string

The type object or operation that the action occurred on for this Audit Log entry.

Enum: "ALGORITHM" "ANALYTIC" "APPLICATION" "APPLICATION_LOG" "APPLICATION_SETTING" "ASYNC_TASK" "AUDIT_LOG" "BILLING_PERIOD" "BILLING_REPORT" "BILLING_USAGE" "CLASSIFIER" "COLUMN_METADATA" "CREDENTIAL_PATH" "DATABASE_CONNECTOR" "DATABASE_RULESET" "DATABASE_USAGE" "DEBUG_BREAKPOINT" "DOMAIN" "ENCRYPTION_KEY" "ENVIRONMENT" "EXECUTION" "EXECUTION_COMPONENT_LOG" "EXECUTION_EVENT" "EXECUTION_LOG" "EXECUTION_REPORT" "FILE_CONNECTOR" "FILE_DOWNLOAD" "FILE_FIELD_METADATA" "FILE_FORMAT" "FILE_METADATA" "FILE_RULESET" "FILE_UPLOAD" "INSTALLATION" "INVENTORY_APPROVAL" "JDBC_DRIVER" "JOB_TASK" "JOB_UTILIZATION_REPORT" "KNOWLEDGE_BASE_INFO" "LDAP" "LICENSE" "MAINFRAME_DATASET_CONNECTOR" "MAINFRAME_DATASET_FIELD_METADATA" "MAINFRAME_DATASET_FORMAT" "MAINFRAME_DATASET_METADATA" "MAINFRAME_DATASET_RECORD_TYPE" "MAINFRAME_DATASET_RULESET" "MASKING_JOB" "MONITOR_JOBS_INFORMATION" "MONITOR_TASK" "MOUNT_FILESYSTEM" "NON_CONFORMING_DATA_SAMPLE" "OAUTH2" "PASSWORD_VAULT" "PLUGIN" "PROFILE_EXPRESSION" "PROFILE_TYPE_EXPRESSION" "PROFILE_JOB" "PROFILE_RESULT" "PROFILE_SET" "RECORD_TYPE" "RECORD_TYPE_QUALIFIER" "REIDENTIFICATION_JOB" "ROLE" "SSH_KEY" "SSO" "SUPPORT_BUNDLE" "SYNCABLE_OBJECT" "SYSTEM_INFORMATION" "TABLE_METADATA" "TASK" "TOKENIZATION_JOB" "UNIFIED_AUTH" "USER"
status
string

The status of the action that occurred for this Audit Log entry. This can change over time as ATTEMPTED actions are completed.

Enum: "ATTEMPTED" "FAILED" "SUCCEEDED"
start_time
string

The date after which all audit logs should be retrieved. Note that the format of the string should be the same date-time format as in the response bodies.

end_time
string

The date before which all audit logs should be retrieved. Note that the format of the string should be the same date-time format as in the response bodies.

search_string
string

Search for activity description containing substring.

sort_by
string

Sort by field.

Enum: "activityTime" "userName" "status" "activityDescription" "identity"
sort_dir
string

Sort by direction.

Enum: "asc" "desc"
page_number
integer <int64>
Default: 1

The page number for which to get logs. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
201

Success

401

Unauthorized access

get/audit-logs
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get all execution components logs

Securityapi_key
Request
query Parameters
execution_id
required
integer <int32>

The ID of the Execution to get all component logs

page_number
integer <int64>
Default: 1

The page number for which to get executions component. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
200

Success

400

Bad request

403

Forbidden access

get/execution-component-log
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get execution component log by component ID

Securityapi_key
Request
path Parameters
componentId
required
integer <int32>

The ID of the execution to get

Responses
200

Success

400

Bad request

403

Forbidden access

get/execution-component-log/{componentId}
Response samples
application/json
{
  • "executionId": 123,
  • "componentId": 67,
  • "componentName": "table_00",
  • "fileDownloadId": "EXECUTION_LOGS-AB8aCbcdDe=="
}

Get all execution logs

Securityapi_key
Request
query Parameters
job_id
integer <int32>

The ID of the job to get all executions for

page_number
integer <int64>
Default: 1

The page number for which to get executions. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

execution_status
string

The status of the job execution. Note that, if this parameter is excluded, then all executions will be returned.

Enum: "CANCELLED" "FAILED" "QUEUED" "RUNNING" "SUCCEEDED" "WAITING" "WARNING"
Responses
200

Success

400

Bad request

401

Unauthorized access

403

Forbidden access

get/execution-logs
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get all execution log by ID

Securityapi_key
Request
path Parameters
executionId
required
integer <int32>

The ID of the execution to get

Responses
200

Success

400

Bad request

403

Forbidden access

get/execution-logs/{executionId}
Response samples
application/json
{
  • "executionId": 123,
  • "jobId": 167,
  • "fileDownloadId": "EXECUTION_LOGS-AB8aCbcdDe==",
  • "status": "SUCCEEDED"
}