curl --request POST \
--url https://api.example.com/api/v1/sso/authorize \
--header 'Content-Type: application/json' \
--data '
{
"clientId": "<string>",
"redirectUri": "<string>",
"scope": "<string>",
"codeChallenge": "<string>",
"codeChallengeMethod": "<string>",
"state": "<string>"
}
'