Change History Audit Logs Query

NowSecure utilizes the Apollo Sandbox that provides an environment to perform GraphQL API queries and mutations on completed assessments, organization details, applications, and much more in NowSecure Platform to obtain detailed results.

Please see our Apollo Sandbox Overview article for more information. The audit > changes node can be queried to see all changes on audited attributes for all entities across the org. This query resolves all information for every historical change across the organization.

Note: This feature requires org admin privileges to integrate with existing RBAC mechanisms.

This result set can be sliced by timeframe using the optional since and until arguments, and an integer limit argument is also available. The results may also be filtered for specific entityTypes, and/or for a given set of attributes. Use this query to see all CVSS edits this year.

Note: The DateTime type is not necessary for a response.

query {
  audit {
    changes {
      entityType
      entityRef
      attribute
      value
      updatedAt
      user {
        ref
      }
    }
  }
}

Comments

0 comments

Article is closed for comments.