Generate Authorization Code and Identity Token (3-legged OAuth Flow)
get
                    /oauth2/v1/authorize
Request
Supported Media Types
                - application/json
Query Parameters
                - 
                        client_id: string
                        
                        Unique ID of the client
- 
                        nonce(optional): string
                        
                        Value that associates the client session with the ID Token and is used to mitigate replay attacks
- 
                        redirect_uri: string
                        
                        Redirection URI where the response is sent
- 
                        response_type: string
                        
                        Type of response from the server (code/token/id_token)
- 
                        scope: string
                        
                        Scope for which the Access Token is requested
- 
                        state(optional): string
                        
                        Opaque value used to maintain the state between the request and the callback
Response
Supported Media Types
                - application/json
200 Response
Authorization Code generated
                
                
                400 Response
Invalid request
                
                
                    Root Schema : error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectError message that appears during Access Token generation
    
    
    
    
        Show Source
        - 
            error: 
            string
            Error values that are based on the OAuth specification
- 
            error_description: 
            string
            Detailed error messages
401 Response
Unauthorized client
                
                
                    Root Schema : error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectError message that appears during Access Token generation
    
    
    
    
        Show Source
        - 
            error: 
            string
            Error values that are based on the OAuth specification
- 
            error_description: 
            string
            Detailed error messages
500 Response
Internal Server Error
                
                
                    Root Schema : error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectError message that appears during Access Token generation
    
    
    
    
        Show Source
        - 
            error: 
            string
            Error values that are based on the OAuth specification
- 
            error_description: 
            string
            Detailed error messages