Auditlog

Use this resource to request entries from the audit log.

GET Request

To request the most recent 200 entries in the audit log, use the following URI.

/api/v2/auditlog

To request a specific batch of audit log entries, define the batch size and request a batch number with the following URI.

/api/v2/auditlog?batchId=<batchId>&batchSize=<batchSize>

Include the following information in the GET URI

FieldRequiredDescription
batchSizeYesNumber of entries to include in a batch.
batchIdYesThe batch that you want to view.
Use 0 for the first batch, which contains the most recent audit log entries.
For example, to view entries 26-50, use a batch size of 25, and request batch 1

GET Response

Returns an auditLogEntry object for each audit log entry returned. Returns the error object if errors occur.
The auditLogEntry object includes the following attributes:

FieldTypeDescription
idStringAudit log entry ID.
versionintVersion
orgIdStringOrganization ID.
usernameStringUser who performed the action.
entryTimeTime the action occurred.
objectIdStringID of the object used.
objectNameStringName of the object used.
categoryStringCategory of audit log entry. Returns one of the following codes:
AUTH. Authorization.
AGREEMENT. Subscription agreement.
SYSTEM_INFO
ADMIN_REPORT
ORG. Organization.
USER
AGENT. Secure Agent.
CONNECTION
SCHEDULE
DRS. Replication.
DQA. Data assessment.
DMASK.Masking.
DSS. Synchronization.
DATA_FILE. File.
WORKFLOW. Linear taskflow.
PCS. PowerCenter.
MTT. Mapping task.
MI_TASK. Mass ingestion task.
CUSTOM_FUNC. Mapplet.
MIGRATE. Migration.
CUSTOM_SOURCE. Saved query.
SUBSCRIPTION_BILLING
USER_GROUP
SUB_ORG. Sub-organization.
OBJECT_ACL. Object permissions.
PACKAGE
TEMPLATE. Visio template.
DTEMPLATE. Mappings.
CONNECTOR. Informatica Cloud Connector.
EDITION. Informatica Cloud edition.
SCHEDULE_BLACKOUT. Schedule blackout period.
EXT_CONNECTION. Connections stored on a local Secure Agent.
BUNDLE.
ORG_EDITION. Information about changes to organization edition association. For example, when the organization is reassigned a new edition.
RUNTIME_ENVIRONMENT.
B2BGW_MONITOR
B2BGW_CUSTOMER
B2BGW_SUPPLIER
TASKFLOW
PROCESS
GUIDE
AI_CONNECTOR
AI_SERVICE_CONNECTOR
PROCESS_OBJECT
eventType of action performed. Returns one of the following codes:
CREATE
UPDATE
DELETE
DISABLE
RUN
VERSION1
VERSION2
VERSION3
VERSION4
VERSION5
VERSION6
VERSION7
DOWNLOAD
EXPORT
IMPORT
FETCHSTATE
LOADSTATE
MAKE_DEFAULT
LINK
ENCRYPT
MOVE_CONNS_TO_AGENT
MOVE_CONNS_TO_IOD
STOP
eventParamObjects related to the action.
messageAdditional information.

GET Example

To view rows 21-40, you might use the following URI.

/api/v2/auditlog?batchId=1&batchSize=20