From e15f6229cdcfe1e49e0a3bc3d0606562ab5b5a44 Mon Sep 17 00:00:00 2001 From: mcrodriguezb <149514755+mcrodriguezb@users.noreply.github.com> Date: Wed, 20 Dec 2023 09:33:59 +0100 Subject: [PATCH] fix: Update payload for Get Provider Information (#7086) Update payload for Get Provider Information Payload was set to token when it should be idpIntentToken Co-authored-by: Livio Spring --- docs/docs/guides/integrate/login-ui/external-login.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/integrate/login-ui/external-login.mdx b/docs/docs/guides/integrate/login-ui/external-login.mdx index da6d0ef9ad..9678a3b797 100644 --- a/docs/docs/guides/integrate/login-ui/external-login.mdx +++ b/docs/docs/guides/integrate/login-ui/external-login.mdx @@ -76,7 +76,7 @@ curl --request POST \ --header 'Authorization: Bearer '"$TOKEN"''\ --header 'Content-Type: application/json' \ --data '{ - "token": "k50WQmDaPIazQDJsyKaEPaQPwgsytxqgQ3K1ifQeQtAmeQ" + "idpIntentToken": "k50WQmDaPIazQDJsyKaEPaQPwgsytxqgQ3K1ifQeQtAmeQ" }' ```