Integrated Authorization Server
Access token endpoint
Issues an access token based on an authorization request, in case the integrated authorization server is enabled
post/token
Request body
Example request
{
"client_id": "client-12345",
"code": "abc123xyz",
"code_verifier": "s256-code-verifier",
"grant_type": "authorization_code",
"pre-authorized_code": "pre-auth-code-xyz",
"redirect_uri": "https://wallet.example.com/callback",
"scope": "openid credential",
"user_pin": "1234",
"tx_code": "tx-56789"
}Response
Successful response
Example response
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"scope": "openid credential",
"token_type": "Bearer",
"expires_in": 3600,
"interval": 5
}