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
}
}
}
}
query {
audit {
changes(since: "2022-01-01T00:00:00Z", attributes: ["edit:cvss"]) {
value
updatedAt
user {
ref
}
}
}
}
{
"data": {
"audit": {
"changes": [
{
"value": 4.5,
"updatedAt": "2022-01-16T23:40:28.611Z",
"user": {
"ref": "81e3b350-0325-457e-8d32-f7202ce8a2a8"
}
},
{
"value": 5.4,
"updatedAt": "2019-01-22T17:26:58.562Z",
"user": {
"ref": "81e3b350-0325-457e-8d32-f7202ce8a2a8"
}
},
// ...
]
}
}
}
Comments
Article is closed for comments.