For the complete documentation index, see llms.txt. This page is also available as Markdown.

Bridge

Gets authorization url

get

Start bridge authorization and return the authorization URL for front-channel redirection.

Supported Standards

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Query parameters
request_uristringRequired

Request URI

connectionstringRequired

Connection

client_idstringRequired

Client ID

redirect_uristringRequired

Redirect URI

account_claimsstringRequired

Account claims. Comma separated list of claims.

ui_localesstringOptional

UI locales

Responses
200Success
application/json
urlstringOptional

Authorization URL to start the authentication process with the external identity provider.

get/bridge/authorize
200Success

Handle bridge receive callback

get

authorization_code redirect uri that was started via /receive endpoint. state and code come as a query parameters. code is exchanged for the access_token to be used in the credential issuence/presentation flow.

Supported Standards

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Query parameters
errorstringOptional

Error code

error_descriptionstringOptional

Error description

error_uristringOptional

Error URI

codestringOptional

Authorization code

statestringOptional

Authorization state

issstringOptional

Access token issuer

Responses
302

Redirects to redirect_uri if returned in the case of a successful presentation response submission. Otherwise redirects to redirect_uri originally provided in the /authorize endpoint.

No content

get/bridge/authorize/receive/callback
302

Redirects to redirect_uri if returned in the case of a successful presentation response submission. Otherwise redirects to redirect_uri originally provided in the /authorize endpoint.

No content

Last updated