From ffeb93bb6a59bd3fdcad259efe3a538540a22c4c Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Mon, 3 Feb 2025 22:36:49 +0100 Subject: [PATCH] [Security Center] Remove trailing spaces --- .../manage-miscategorization-reports.mdx | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/content/docs/security-center/intel-apis/manage-miscategorization-reports.mdx b/src/content/docs/security-center/intel-apis/manage-miscategorization-reports.mdx index 76a444f6b0388e7..4222d266a44b99f 100644 --- a/src/content/docs/security-center/intel-apis/manage-miscategorization-reports.mdx +++ b/src/content/docs/security-center/intel-apis/manage-miscategorization-reports.mdx @@ -7,7 +7,7 @@ sidebar: This guide will show you how to manage miscategorization of reports. To complete this guide, you will need to generate an [API token](/fundamentals/api/get-started/create-token/). -1. Create an [API token](/fundamentals/api/get-started/create-token/) if you do not have one already. +1. Create an [API token](/fundamentals/api/get-started/create-token/) if you do not have one already. 2. Choose **Custom Token**. 3. Name the token, and grant permissions. 4. Send a `POST` request to the miscategorization [API endpoint](https://developers.cloudflare.com/api/resources/intel/subresources/miscategorizations/methods/create/). You can find an example below: @@ -18,19 +18,19 @@ export URL="https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/intel/misc curl -X POST "$URL" \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type:application/json" \ ---data '{ - "content_adds": [ - ], - "content_removes": [ - ], - "indicator_type": "domain", - "ip": null, - "security_adds": [ - 115 - ], - "security_removes": [ - ], - "url": "cloudflare.com" +--data '{ + "content_adds": [ + ], + "content_removes": [ + ], + "indicator_type": "domain", + "ip": null, + "security_adds": [ + 115 + ], + "security_removes": [ + ], + "url": "cloudflare.com" }' ```