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.
45096
-
properties:
45097
-
description:
45098
-
description: Additional information about the reason why the findings are muted or unmuted. This field has a limit of 280 characters.
45099
-
example: "To be resolved later."
45100
-
type: string
45101
-
expire_at:
45102
-
description: >-
45103
-
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 findings remain muted indefinitely.
45104
-
example: 1778721573794
45105
-
format: int64
45106
-
type: integer
45107
-
is_muted:
45108
-
description: Whether the findings should be muted or unmuted.
45109
-
example: true
45110
-
type: boolean
45111
-
reason:
45112
-
$ref: "#/components/schemas/MuteFindingsReason"
45113
-
description: The reason why the findings are muted or unmuted.
45114
-
required:
45115
-
- is_muted
45116
-
- reason
45117
-
type: object
45118
-
MuteFindingsReason:
45119
-
description: The reason why the findings are muted or unmuted.
45120
-
enum:
45121
-
- PENDING_FIX
45122
-
- FALSE_POSITIVE
45123
-
- OTHER
45124
-
- NO_FIX
45125
-
- DUPLICATE
45126
-
- RISK_ACCEPTED
45127
-
- NO_PENDING_FIX
45128
-
- HUMAN_ERROR
45129
-
- NO_LONGER_ACCEPTED_RISK
45130
-
example: PENDING_FIX
45131
-
type: string
45132
-
x-enum-varnames:
45133
-
- PENDING_FIX
45134
-
- FALSE_POSITIVE
45135
-
- OTHER
45136
-
- NO_FIX
45137
-
- DUPLICATE
45138
-
- RISK_ACCEPTED
45139
-
- NO_PENDING_FIX
45140
-
- HUMAN_ERROR
45141
-
- NO_LONGER_ACCEPTED_RISK
45142
-
MuteFindingsRequest:
45143
-
description: Request to mute or unmute security findings.
description: Unique identifier of the mute request.
45196
-
example: "93bfeb70-af47-424d-908a-948d3f08e37f"
45197
-
type: string
45198
-
type:
45199
-
$ref: "#/components/schemas/MuteDataType"
45200
-
required:
45201
-
- type
45202
-
- id
45203
-
type: object
45204
45085
NotebookCreateData:
45205
45086
description: Notebook creation data
45206
45087
properties:
@@ -106976,6 +106857,8 @@ paths:
106976
106857
get:
106977
106858
description: |-
106978
106859
Get a list of actively reporting metrics for your organization. Pagination is optional using the `page[cursor]` and `page[size]` query parameters.
106860
+
106861
+
Query parameters use bracket notation (for example, `filter[tags]`, `filter[queried][window][seconds]`). Pass them as standard URL query strings, URL-encoding the brackets if your client does not handle them. For example: `GET /api/v2/metrics?filter[tags]=env:prod&window[seconds]=86400&page[size]=500`.
106979
106862
operationId: ListTagConfigurations
106980
106863
parameters:
106981
106864
- description: Only return custom metrics that have been configured with Metrics Without Limits.
@@ -107015,7 +106898,7 @@ paths:
107015
106898
schema:
107016
106899
type: boolean
107017
106900
- description: |-
107018
-
Only return metrics that have been queried or not queried in the specified window. Dependent on being sent with `filter[queried]`. The default value is 2,592,000 seconds (30 days), the maximum value is 15,552,000 seconds (180 days), and the minimum value is 1 second.
106901
+
This parameter has no effect unless `filter[queried]` is also set. Only return metrics that have been queried or not queried in the specified window. The default value is 2,592,000 seconds (30 days), the maximum value is 15,552,000 seconds (180 days), and the minimum value is 1 second. For example: `filter[queried]=true&filter[queried][window][seconds]=604800`.
107019
106902
example: 15552000
107020
106903
in: query
107021
106904
name: filter[queried][window][seconds]
@@ -107027,7 +106910,7 @@ paths:
107027
106910
minimum: 1
107028
106911
type: integer
107029
106912
- description: |-
107030
-
Only return metrics that were submitted with tags matching this expression. You can use AND, OR, IN, and wildcards (for example, service:web*).
106913
+
Only return metrics that were submitted with tags matching this expression. You can use AND, OR, IN, and wildcards. For example: `filter[tags]=env IN (staging,test) AND service:web*`.
107031
106914
example: "env IN (staging,test) AND service:web*"
107032
106915
in: query
107033
106916
name: filter[tags]
@@ -107054,7 +106937,8 @@ paths:
107054
106937
maximum: 2592000
107055
106938
minimum: 1
107056
106939
type: integer
107057
-
- description: Maximum number of results per page. Use with `page[cursor]` for pagination. The default value is 10000, the maximum value is 10000, and the minimum value is 1.
106940
+
- description: |-
106941
+
Maximum number of results per page. Send `page[size]` on the first request to opt in to pagination; on each subsequent request, send `page[cursor]` set to the value of `meta.pagination.next_cursor` from the previous response. The default value is 10000, the maximum value is 10000, and the minimum value is 1.
107058
106942
in: query
107059
106943
name: page[size]
107060
106944
required: false
@@ -107458,7 +107342,8 @@ paths:
107458
107342
operationId: EstimateMetricsOutputSeries
107459
107343
parameters:
107460
107344
- $ref: "#/components/parameters/MetricName"
107461
-
- description: Filtered tag keys that the metric is configured to query with.
107345
+
- description: |-
107346
+
Comma-separated list of tag keys that the metric is configured to query with. For example: `filter[groups]=app,host`.
107462
107347
example: "app,host"
107463
107348
in: query
107464
107349
name: filter[groups]
@@ -119356,74 +119241,6 @@ paths:
119356
119241
permissions:
119357
119242
- security_monitoring_findings_write
119358
119243
- appsec_vm_write
119359
-
/api/v2/security/findings/mute:
119360
-
patch:
119361
-
description: >-
119362
-
Mute or unmute security findings.
119363
-
119364
-
You can mute or unmute up to 100 security findings per request. The request body must include `is_muted` and `reason` attributes. The allowed reasons depend on whether the finding is being muted or unmuted:
119365
-
- To mute a finding: `PENDING_FIX`, `FALSE_POSITIVE`, `OTHER`, `NO_FIX`, `DUPLICATE`, `RISK_ACCEPTED`.
119366
-
- To unmute a finding: `NO_PENDING_FIX`, `HUMAN_ERROR`, `NO_LONGER_ACCEPTED_RISK`, `OTHER`.
Copy file name to clipboardExpand all lines: cassettes/v2/Security-Monitoring_1187227211/Mute-security-findings-returns-Accepted-response_1335830985/frozen.json
Copy file name to clipboardExpand all lines: cassettes/v2/Security-Monitoring_1187227211/Mute-security-findings-returns-Accepted-response_1335830985/recording.har
Copy file name to clipboardExpand all lines: cassettes/v2/Security-Monitoring_1187227211/Mute-security-findings-returns-Not-Found-response_3588221619/frozen.json
Copy file name to clipboardExpand all lines: cassettes/v2/Security-Monitoring_1187227211/Mute-security-findings-returns-Not-Found-response_3588221619/recording.har
Copy file name to clipboardExpand all lines: cassettes/v2/Security-Monitoring_1187227211/Mute-security-findings-returns-Unprocessable-Entity-response_2493527119/frozen.json
0 commit comments