Deutsche Bank ForgeRock OAuth API

The ForgeRock OAuth API from Deutsche Bank — 2 operation(s) for forgerock oauth.

Operations 2

GET /am/oauth2/realms/root/realms/{realm}/authorize OAuth authorize endpoint #
POST /am/oauth2/realms/root/realms/{realm}/access_token Exchange authorization data for OAuth tokens #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/deutsche-bank-forgerock-oauth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

deutsche-bank-forgerock-oauth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GPL-SPA Auth & Authorization API Contract ForgeRock OAuth…
  description: 'Consolidated API contract derived from gpl-spa code and runtime config.


    Notes:

    - Some ForgeRock endpoints are called through @forgerock/javascript-sdk, so exact wire paths are partially SDK-driven.

    - Paths below use conventional ForgeRock AM/OAuth endpoints based on configured baseUrl/realmPath.'
  version: 1.0.0
servers:
- url: https://simulator-api.db.com:443/gw/public/oneid/
tags:
- name: ForgeRock OAuth
paths:
  /am/oauth2/realms/root/realms/{realm}/authorize:
    get:
      tags:
      - ForgeRock OAuth
      summary: OAuth authorize endpoint
      description: Accessed by TokenManager.getTokens(...), may include prompt=none and login_hint.
      operationId: authorize
      parameters:
      - name: realm
        in: path
        description: Realm name in ForgeRock path.
        required: true
        style: simple
        explode: false
        schema:
          type: string
          enum:
          - consumer
          - norisbank
      - name: client_id
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          example: 163440-1_deutschebank_onlineBankingClient
      - name: response_type
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          example: code
      - name: scope
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          example: openid
      - name: redirect_uri
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
      - name: state
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
      - name: prompt
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - none
          - login
      - name: login_hint
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
      responses:
        '302':
          description: Redirect with authorization code
        '200':
          description: Embedded/SDK-dependent success response
        4XX:
          $ref: '#/components/responses/ClientError'
  /am/oauth2/realms/root/realms/{realm}/access_token:
    post:
      tags:
      - ForgeRock OAuth
      summary: Exchange authorization data for OAuth tokens
      description: Called via TokenManager.getTokens(...).
      operationId: exchangeToken
      parameters:
      - name: realm
        in: path
        description: Realm name in ForgeRock path.
        required: true
        style: simple
        explode: false
        schema:
          type: string
          enum:
          - consumer
          - norisbank
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/OAuthTokenRequest'
        required: false
      responses:
        '200':
          description: OAuth tokens
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OAuthTokenResponse'
        4XX:
          $ref: '#/components/responses/ClientError'
        5XX:
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    OAuthTokenRequest:
      type: object
      properties:
        grant_type:
          type: string
          example: authorization_code
        code:
          type: string
        redirect_uri:
          type: string
        client_id:
          type: string
        code_verifier:
          type: string
      additionalProperties: true
    OAuthTokenResponse:
      required:
      - accessToken
      type: object
      properties:
        accessToken:
          type: string
        refreshToken:
          type: string
        idToken:
          type: string
        token_type:
          type: string
          example: Bearer
        expires_in:
          type: integer
          example: 3600
        scope:
          type: string
          example: openid
        acr:
          type: string
          example: '2'
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        title:
          type: string
        type:
          type: string
        message:
          type: string
      additionalProperties: true
  responses:
    ClientError:
      description: 4xx client error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    ServerError:
      description: 5xx server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT