From 5b581e6fafa0ebe04762b1879426df62e78c31fb Mon Sep 17 00:00:00 2001 From: MattUribe <71285939+MattUribe@users.noreply.github.com> Date: Wed, 12 Feb 2025 16:05:27 -0600 Subject: [PATCH] Update authentication.md corrected sp:scope:all to sp:scopes:all --- docs/api/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/authentication.md b/docs/api/authentication.md index cea56cd711e9..4c0a6c3f14db 100644 --- a/docs/api/authentication.md +++ b/docs/api/authentication.md @@ -211,7 +211,7 @@ This example cURL command passes client credentials in the body as form-data to ```bash curl --location 'https://[tenant].api.identitynow.com/oauth/token' \ ---header 'scope: sp:scope:all' \ +--header 'scope: sp:scopes:all' \ --form 'grant_type="client_credentials"' \ --form 'client_id="{clientId}"' \ --form 'client_secret="{clientSecret}"'