From f2e96365941414147dba112c044717e2775a7d8f Mon Sep 17 00:00:00 2001 From: developer-relations-sp Date: Tue, 1 Oct 2024 14:49:03 +0000 Subject: [PATCH] Automated commit 'Merge pull request #43 from sailpoint/nerocket-1735-api-documentation NEROCKET-1735 adding audit_events to the body.' by github action: 11127847658 --- nerm/requestBodies/POST/AuditEvents.yaml | 49 +++++++++++++----------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/nerm/requestBodies/POST/AuditEvents.yaml b/nerm/requestBodies/POST/AuditEvents.yaml index df511b2d..41f28326 100644 --- a/nerm/requestBodies/POST/AuditEvents.yaml +++ b/nerm/requestBodies/POST/AuditEvents.yaml @@ -4,26 +4,29 @@ content: schema: type: object properties: - offset: - description: The page of pagination for these events. - type: integer - format: int32 - example: 1 - sort_by: - description: A column that we are sorting these records from. - type: string - example: created_at - limit: - description: The limiting count for the amount of records returned. - type: integer - example: 1 - format: int32 - order: - description: Which direction the list should be sorted by - type: string - enum: [asc, desc] - example: "asc" - filters: - type: array - items: - $ref: "../../schemas/POST/AuditEvent.yaml" + audit_events: + type: object + properties: + offset: + description: The page of pagination for these events. + type: integer + format: int32 + example: 1 + sort_by: + description: A column that we are sorting these records from. + type: string + example: created_at + limit: + description: The limiting count for the amount of records returned. + type: integer + example: 1 + format: int32 + order: + description: Which direction the list should be sorted by + type: string + enum: [asc, desc] + example: "asc" + filters: + type: array + items: + $ref: "../../schemas/POST/AuditEvent.yaml"