You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Mute properties to apply to the findings.
45023
+
properties:
45024
+
description:
45025
+
description: Additional information about the reason why the findings are muted or unmuted. This field has a maximum limit of 280 characters.
45026
+
example: "To be resolved later."
45027
+
type: string
45028
+
expiration_date:
45029
+
description: >-
45030
+
The expiration date of the mute action (Unix ms). It must be set to a value greater than the current timestamp. If this field is not provided, the finding will be muted indefinitely.
45031
+
example: 1778721573794
45032
+
format: int64
45033
+
type: integer
45034
+
muted:
45035
+
description: Whether the findings should be muted or unmuted.
45036
+
example: true
45037
+
type: boolean
45038
+
reason:
45039
+
$ref: "#/components/schemas/MuteFindingsReason"
45040
+
description: The reason why the findings are muted or unmuted.
45041
+
required:
45042
+
- muted
45043
+
- reason
45044
+
type: object
45045
+
MuteFindingsReason:
45046
+
description: The reason why the finding is muted or unmuted.
45047
+
enum:
45048
+
- PENDING_FIX
45049
+
- FALSE_POSITIVE
45050
+
- OTHER
45051
+
- NO_FIX
45052
+
- DUPLICATE
45053
+
- RISK_ACCEPTED
45054
+
- NO_PENDING_FIX
45055
+
- HUMAN_ERROR
45056
+
- NO_LONGER_ACCEPTED_RISK
45057
+
example: PENDING_FIX
45058
+
type: string
45059
+
x-enum-varnames:
45060
+
- PENDING_FIX
45061
+
- FALSE_POSITIVE
45062
+
- OTHER
45063
+
- NO_FIX
45064
+
- DUPLICATE
45065
+
- RISK_ACCEPTED
45066
+
- NO_PENDING_FIX
45067
+
- HUMAN_ERROR
45068
+
- NO_LONGER_ACCEPTED_RISK
45069
+
MuteFindingsRequest:
45070
+
description: Request to mute or unmute security findings.
description: Unique identifier of the mute request.
45121
+
example: "93bfeb70-af47-424d-908a-948d3f08e37f"
45122
+
type: string
45123
+
type:
45124
+
$ref: "#/components/schemas/MuteDataType"
45125
+
required:
45126
+
- type
45127
+
- id
45128
+
type: object
45007
45129
NotebookCreateData:
45008
45130
description: Notebook creation data
45009
45131
properties:
@@ -53518,6 +53640,11 @@ components:
53518
53640
PersonalAccessTokenAttributes:
53519
53641
description: Attributes of a personal access token.
53520
53642
properties:
53643
+
alias:
53644
+
description: The alias (short identifier) of the personal access token.
53645
+
example: "2H9MCNMBM8FQjQ16YucXkX"
53646
+
readOnly: true
53647
+
type: string
53521
53648
created_at:
53522
53649
description: Creation date of the personal access token.
53523
53650
example: "2024-01-01T00:00:00+00:00"
@@ -78063,10 +78190,6 @@ components:
78063
78190
description: Title of the user.
78064
78191
nullable: true
78065
78192
type: string
78066
-
uuid:
78067
-
description: UUID of the user.
78068
-
readOnly: true
78069
-
type: string
78070
78193
verified:
78071
78194
description: Whether the user is verified.
78072
78195
type: boolean
@@ -109759,7 +109882,7 @@ paths:
109759
109882
operator: OR
109760
109883
permissions:
109761
109884
- user_app_keys
109762
-
/api/v2/personal_access_tokens/{pat_id}:
109885
+
/api/v2/personal_access_tokens/{pat_uuid}:
109763
109886
delete:
109764
109887
description: Revoke a specific personal access token.
109765
109888
operationId: RevokePersonalAccessToken
@@ -116522,6 +116645,71 @@ paths:
116522
116645
permissions:
116523
116646
- security_monitoring_findings_write
116524
116647
- appsec_vm_write
116648
+
/api/v2/security/findings/mute:
116649
+
patch:
116650
+
description: >-
116651
+
Mute or unmute security findings.
116652
+
116653
+
You can mute or unmute up to 100 security findings per request. The request body must include `muted` and `reason` attributes. The allowed reasons depend on whether the finding is being muted or unmuted:
116654
+
- To mute a finding: `PENDING_FIX`, `FALSE_POSITIVE`, `OTHER`, `NO_FIX`, `DUPLICATE`, `RISK_ACCEPTED`.
116655
+
- To unmute a finding: `NO_PENDING_FIX`, `HUMAN_ERROR`, `NO_LONGER_ACCEPTED_RISK`, `OTHER`.
Copy file name to clipboardExpand all lines: cassettes/features/v2/security_monitoring/Mute-security-findings-returns-Unprocessable-Entity-response.yml
0 commit comments