REST API Reference > Platform REST API version 2 resources > auditlog
  

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:
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:
  • - 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. File 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_CONNECTION
  • - AI_SERVICE_CONNECTOR
  • - PROCESS_OBJECT
  • - DOMAIN
event
String
Type 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
  • - REGISTER
  • - EDIT
  • - DEREGISTER
  • - RETRY_REGISTRATION
  • - RECONCILE
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