We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a0af3 commit 77c78edCopy full SHA for 77c78ed
articles/ai-services/content-safety/how-to/use-blocklist.md
@@ -258,14 +258,18 @@ curl --location --request POST '<endpoint>/contentsafety/text/blocklists/<your_l
258
> You can add multiple blocklistItems in one API call. Make the request body a JSON array of data groups:
259
>
260
> ```json
261
-> [{
262
-> "description": "string",
263
-> "text": "bleed"
264
-> },
265
> {
266
267
-> "text": "blood"
268
-> }]
+> "blocklistItems": [
+> {
+> "description": "string",
+> "text": "bleed"
+> },
269
+> "text": "blood"
270
+> }
271
+> ]
272
+>}
273
> ```
274
275
0 commit comments