Skip to content

Commit 71224a3

Browse files
Fix Docs to use Global API Key when disabling SSO (#21670)
This API only accepts Global API authentication; example using token is inaccurate.
1 parent e65cec8 commit 71224a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/content/docs/cloudflare-one/applications/configure-apps/dash-sso-apps.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/sso/v2/connectors
150150
```bash title="cURL command"
151151
curl --request PATCH \
152152
'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/sso/v2/connectors/2828' \
153-
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
153+
--header "X-Auth-Email: $CLOUDFLARE_EMAIL" \
154+
--header "X-Auth-Key: $CLOUDFLARE_API_KEY" \
154155
--header "Content-Type: application/json" \
155156
--data '{
156157
"sso_connector_status": "DIS"

0 commit comments

Comments
 (0)