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:
  • - ADMIN_REPORT
  • - AGENT. Secure Agent.
  • - AGREEMENT. Subscription agreement.
  • - AI_CONNECTION
  • - AI_SERVICE_CONNECTOR
  • - AUTH. Authorization.
  • - B2BGW_CUSTOMER
  • - B2BGW_MONITOR
  • - B2BGW_SUPPLIER
  • - BUNDLE.
  • - CONNECTION
  • - CONNECTOR. Informatica Cloud Connector.
  • - CUSTOM_FUNC. Mapplet.
  • - CUSTOM_SOURCE. Saved query.
  • - DATA_FILE. File.
  • - DMASK.Masking.
  • - DOMAIN
  • - DQA. Data assessment.
  • - DRS. Replication.
  • - DSS. Synchronization.
  • - DTEMPLATE. Mappings.
  • - EDITION. Informatica Cloud edition.
  • - EXT_CONNECTION. Connections stored on a local Secure Agent.
  • - GUIDE
  • - MI_TASK. File ingestion task.
  • - MIGRATE. Migration.
  • - MTT. Mapping task.
  • - OBJECT_ACL. Object permissions.
  • - ORG. Organization.
  • - ORG_EDITION. Information about changes to organization edition association. For example, when the organization is reassigned a new edition.
  • - PACKAGE
  • - PCS. PowerCenter.
  • - PROCESS
  • - PROCESS_OBJECT
  • - RUNTIME_ENVIRONMENT.
  • - SCHEDULE
  • - SCHEDULE_BLACKOUT. Schedule blackout period.
  • - SUB_ORG. Sub-organization.
  • - SUBSCRIPTION_BILLING
  • - SYSTEM_INFO
  • - TASKFLOW
  • - USER
  • - USER_GROUP
  • - WORKFLOW. Linear taskflow.
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