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
A combination of `key` and `label` filtering is supported.
223
229
Use the optional `key` and `label` query string parameters.
224
230
231
+
```http
232
+
GET /kv?key={key}&label={label}&api-version={api-version}
233
+
```
234
+
225
235
:::zone-end
226
236
:::zone target="docs" pivot="v23-11"
227
237
228
-
For API Versions greater than `2023-11-01`, filtering by `tags` is also supported. Multiple tag filters can be provided as query string parameters in the `tagName=tagValue` format. Tag filters must be an exact match.
238
+
A combination of `key`, `label` and `tags` filtering is supported.
239
+
Use the optional `key`, `label` and `tags` query string parameters.
240
+
Multiple tag filters can be provided as query string parameters in the `tagName=tagValue` format. Tag filters must be an exact match.
229
241
230
242
```http
231
243
GET /kv?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-version={api-version}
@@ -234,9 +246,6 @@ GET /kv?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-version=
234
246
:::zone-end
235
247
:::zone target="docs" pivot="v1,v23-10,v23-11"
236
248
237
-
```http
238
-
GET /kv?key={key}&label={label}&api-version={api-version}
239
-
```
240
249
241
250
### Supported filters
242
251
@@ -262,7 +271,7 @@ GET /kv?key={key}&label={label}&api-version={api-version}
262
271
|--|--|
263
272
|`tags` is omitted or `tags=`|Matches **any** tag|
264
273
|`tags=group=app1`|Matches KV where the tag name is `group` and tag value is `app1`|
265
-
|`tags=group=app1&tags=env=prod`|Matches KV which contain at least 2 tags, where the tag names are `group`and `env` and tag values are `app1` and `prod` respectively (limited to 5 tag filters)|
274
+
|`tags=group=app1&tags=env=prod`|Matches KV that have a tag named `group`with value `app1` and a tag named `env` with value `prod`(limited to 5 tag filters)|
266
275
|`tags=tag1=%00`|Matches KV where the tag name is `tag1` and tag value is `null`|
267
276
|`tags=tag1=`|Matches KV where the tag name is `tag1` and tag value is empty|
0 commit comments