REST API Reference > Platform REST API version 2 resources > Audit logs
  

Audit logs

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:
Field
Required
Description
batchSize
Yes
Number of entries to include in a batch.
batchId
Yes
The 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:
Field
Type
Description
id
String
Audit log entry ID.
version
Int
Version.
orgId
String
Organization ID.
username
String
User who performed the action.
entryTime
Date/time
Time the action occurred. Uses Eastern Time Zone (ET).
entryTimeUTC
Date/time
Time the action occurred.
Uses Coordinated Universal Time (UTC).
objectId
String
ID of the object used.
objectName
String
Name of the object used.
category
String
Category of audit log entry. Returns one of the following codes:
  • - AGENT. Secure Agent installation, configuration, status updates, and operational activities.
  • - AGREEMENT. Subscription agreement updates, renewals, and changes to terms of service.
  • - AUTH. Authorization events such as user logins, logouts, password changes, and permission changes.
  • - B2BGW_CUSTOMER. B2B Gateway customer interactions such as data exchange or transaction processing.
  • - B2BGW_MONITOR. B2B Gateway monitoring activities such as performance tracking and event logging.
  • - B2BGW_SUPPLIER. B2B Gateway supplier interactions such as transaction and communication logging.
  • - BUNDLE. Creating, modifying, and deploying bundles.
  • - CONNECTION. Creating, modifying, and deleting connections.
  • - CONNECTOR. Informatica Cloud Connector setup, configuration, and updates.
  • - CUSTOM_FUNC. Mapplets or user-defined processes or functions.
  • - CUSTOM_SOURCE. Custom sources such as saved queries or custom data connections.
  • - DATA_FILE. Creating, uploading, downloading, modifying, and deleting files.
  • - DMASK.Masking events such as applying, updating, and removing masking policies on sensitive data.
  • - DOMAIN. Domain configuration changes and updates.
  • - DQA. Data assessment such as data quality checks, reporting, and issue resolution.
  • - DRS. Replication events such as configuring and running replication tasks and getting status updates.
  • - DSS. Synchronizationevents when synchronizing data between systems.
  • - DTEMPLATE. Creating, modifying, and running mappings.
  • - EDITION. Informatica Cloud edition events such as edition changes in the organization or edition updates.
  • - EXT_CONNECTION. Creating, modifying, and deleting exernal connections such as connections stored on a local Secure Agent.
  • - GUIDE. Accessing, creating, and modifying user guides and process guides.
  • - MI_TASK. Setting up and running file ingestion tasks and getting status updates.
  • - MIGRATE. Migrating data, configurations, and applications between environments.
  • - MTT. Creating, modifying, running, and deleting mapping tasks.
  • - OBJECT_ACL. Object permissions including setting, modifying, and removing access control lists (ACLs) on objects.
  • - ORG. Creating, modifying, and deleting organizations.
  • - ORG_EDITION. Changes to the organization edition association, such as reassigning an organization to a new edition or updating edition features.
  • - PACKAGE. Configuring, updating, and deploying packages.
  • - PCS. PowerCenter events that involve workflows, mappings, and other configurations.
  • - PROCESS. Creating, managing, and running processes.
  • - PROCESS_OBJECT. Process objects including updates, logs, and error reports.
  • - RUNTIME_ENVIRONMENT. Configuration changes, status changes, and updates to runtime environments.
  • - SCHEDULE. Creating, modifying, and running scheduled tasks or processes.
  • - SCHEDULE_BLACKOUT. Blackout periods for schedules including configuration changes and the start and end of these periods.
  • - SUB_ORG. Creating, modifying, and deleting sub-organizations.
  • - SUBSCRIPTION_BILLING. Invoices, payments, or changes to billing plans.
  • - SYSTEM_INFO. System status updates, logging, and updates to the configuration.
  • - TASKFLOW. Creating, modifying, and running taskflows.
  • - USER. Creating, modifying, and deleting user accounts and changes to role assignments.
  • - USER_GROUP. Creating, modifying, and deleting user groups and changes to group membership.
  • - WORKFLOW. Creating, modifying, running, and deleting linear taskflows.
event
String
Type of action performed. Returns one of the following codes:
  • - ADD_TAG
  • - CREATE
  • - DELETE
  • - DEREGISTER
  • - DISABLE
  • - DOWNLOAD
  • - EDIT
  • - ENCRYPT
  • - EXPORT
  • - FETCHSTATE
  • - IMPORT
  • - LINK
  • - LOADSTATE
  • - MAKE_DEFAULT
  • - MIGRATED
  • - MOVE_CONNS_TO_AGENT
  • - MOVE_CONNS_TO_IOD
  • - PUBLISH
  • - RECONCILE
  • - REGISTER
  • - REMOVE_TAG
  • - RETRY_REGISTRATION
  • - RUN
  • - STOP
  • - UPDATE
  • - UPDATE_PERMISSION
  • - VERSION1
  • - VERSION2
  • - VERSION3
  • - VERSION4
  • - VERSION5
  • - VERSION6
  • - VERSION7
eventParam
String
Objects related to the action.
Note: The value can be a maximum of 1024 characters. If the value exceeds 1024 characters, it is truncated and prefixed with "Full Value Truncated."
message
String
Additional information.

GET Example

To view rows 21-40, you might use the following URI:
/api/v2/auditlog?batchId=1&batchSize=20