Skip to content

Render built-in consent page when enabled.

GET
/auth/consent
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/auth/consent

Managed browser challenges require the authenticated session bound at authorization time.

Successful response. The representation can be JSON, HTML, or a redirect.

Error response.

Media type application/json
object
error
string
error_description
string
message
string
webauthn_signal

Optional browser-side WebAuthn Signal API hint. When unknown_credential is true, clients that just received a WebAuthn credential assertion may call PublicKeyCredential.signalUnknownCredential() for that credential ID.

object
unknown_credential
boolean
key
additional properties
Example generated
{
"error": "example",
"error_description": "example",
"message": "example",
"webauthn_signal": {
"unknown_credential": true
}
}