Table of Contents

Search

  1. Preface
  2. Informatica Intelligent Cloud Services REST API
  3. Platform REST API version 2 resources
  4. Platform REST API version 3 resources
  5. Data Integration REST API
  6. Mass Ingestion Files REST API
  7. Mass Ingestion Streaming REST API
  8. Model Serve REST API
  9. RunAJob utility
  10. ParamSetCli utility
  11. REST API codes
  12. REST API resource quick references

REST API Reference

REST API Reference

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
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
eventParam
String
Objects related to the action.
message
String
Additional information.

GET Example

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

0 COMMENTS

We’d like to hear from you!