latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB

21de3aa0b170

Audits

Get List of Audits

Use this API to retrieve a list of audits by key terms and filters. The response will include details for each audit along with the associated approvers, attributes, and auditors.

post/api/audit-management/v1/audits/pages

Query parameters

pageinteger

Results page to be retrieved (0..N)

sizeinteger
Example:20

Number of records per page (1..50)

sort'number,asc' | 'number,desc' | 'name,asc' | 'name,desc' | 'orgGroupId,asc' | 'orgGroupId,desc' | 'startDate,asc' | 'startDate,desc' | 'endDate,asc' | 'endDate,desc'
Example:number,desc

Sorting criteria in the format: property(,asc|desc). Default sort order is descending.

Request body

SearchCriteriaRequest required— unresolved $ref

Response

OK

emptyboolean

The flag to check if the entity is empty or not.

firstboolean

The flag to check if the entity is first entity or not.

lastboolean

The flag to check if the entity is last entity or not.

numberinteger

The number associated with the result.

numberOfElementsinteger

Total number of elements in the result.

totalPagesinteger

Total number of pages in the result list.

totalElementsinteger

Total number of elements in the result.

sizeinteger

Size of the result list.

Example response

{
  "content": [
    {
      "auditId": "25ce2fe7-aece-4f0d-a216-c189b1d1aac4",
      "number": 10023,
      "name": "Annual Security Audit 2025",
      "frameworks": [
        {
          "id": "b7d17fc8-889f-472e-8c74-f1169821e7e7",
          "name": "NIST Cybersecurity Framework",
          "nameKey": "framework.nist"
        }
      ],
      "orgGroupId": "b7d17fc8-889f-472e-8c74-f1169821e7e7",
      "goal": "To assess compliance with security controls and identify areas for improvement",
      "startDate": "2025-06-01",
      "endDate": "2025-06-30",
      "orgGroup": "Security and Compliance",
      "auditors": [
        {
          "auditorId": "160dba09-6eab-412d-8702-efe76ef74511",
          "fullName": "Audit Manager"
        }
      ],
      "approvers": [
        {
          "approverId": "d097d3dc-60e5-48fd-9d3e-f0bdf6757d7b",
          "fullName": "Audit LKGBENTSKU"
        }
      ],
      "workflow": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "In Progress",
        "nameKey": "workflow.stage.in_progress"
      },
      "stage": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Security Entity",
        "nameKey": "workflow.stage.in_progress",
        "badgeColor": "blue"
      },
      "attributes": {
        "attributeMultiSelectValue.valueId2": [
          {
            "id": "74a7dc75-d322-41cf-a3eb-3c75e391a199",
            "value": "op2",
            "valueKey": "op2"
          }
        ]
      }
    }
  ],
  "first": true,
  "numberOfElements": 20,
  "pageable": {
    "offset": 3,
    "pageNumber": 3,
    "pageSize": 23,
    "paged": true,
    "sort": {
      "empty": true,
      "sorted": true
    }
  },
  "sort": {
    "empty": true,
    "sorted": true
  },
  "totalPages": 5,
  "totalElements": 50,
  "size": 20
}