Geniemode Bank Controller API

Bank Controller

Operations 6

GET /api/v1/path/bank getBanks #
POST /api/v1/path/bank submitBank #
GET /api/v1/path/bank/migrate-manufacturer migrateManufacturer #
PUT /api/v1/path/bank/update-bank-details/{id} toggleManufacturerBankDetails #
PUT /api/v1/path/bank/{id} updateBank #
DELETE /api/v1/path/bank/{id} deleteBank #

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/geniemode-bank-controller-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

geniemode-bank-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Cataloguing API.
  version: API V
  title: Cataloguing Bank Controller API
  termsOfService: Terms of service
  contact:
    name: Mani Bhushan
    url: www.geniemode.com
    email: mani.kumar@geniemode.com
  license:
    name: License of API
    url: API license URL
servers:
- url: https://portal.geniemode.com
tags:
- name: bank-controller
  description: Bank Controller
paths:
  /api/v1/path/bank:
    get:
      tags:
      - bank-controller
      summary: getBanks
      operationId: getBanksUsingGET
      parameters:
      - name: entityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: entityType
        in: query
        required: false
        schema:
          type: string
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: subType
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
    post:
      tags:
      - bank-controller
      summary: submitBank
      operationId: submitBankUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitBanksRequestPayload'
        description: payload
        required: true
  /api/v1/path/bank/migrate-manufacturer:
    get:
      tags:
      - bank-controller
      summary: migrateManufacturer
      operationId: migrateManufacturerUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/bank/update-bank-details/{id}:
    put:
      tags:
      - bank-controller
      summary: toggleManufacturerBankDetails
      operationId: toggleManufacturerBankDetailsUsingPUT
      parameters:
      - name: id
        in: path
        description: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateManufacturerBankDetailsRequest'
        description: payload
        required: true
  /api/v1/path/bank/{id}:
    put:
      tags:
      - bank-controller
      summary: updateBank
      operationId: updateBankUsingPUT
      parameters:
      - name: id
        in: path
        description: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BanksRequestPayload'
        description: payload
        required: true
    delete:
      tags:
      - bank-controller
      summary: deleteBank
      operationId: deleteBankUsingDELETE
      parameters:
      - name: id
        in: path
        description: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
components:
  schemas:
    UpdateManufacturerBankDetailsRequest:
      type: object
      properties:
        toggle:
          type: boolean
      title: UpdateManufacturerBankDetailsRequest
    BanksRequestPayload:
      type: object
      properties:
        account_holder_name:
          type: string
        account_no:
          type: string
        address_id:
          type: integer
          format: int64
        bank_routing_number:
          type: string
        beneficiary_address_id:
          type: integer
          format: int64
        beneficiary_name:
          type: string
        entity_id:
          type: integer
          format: int64
        entity_type:
          type: string
        iban_aba:
          type: string
        id:
          type: integer
          format: int64
        ifsc:
          type: string
        name:
          type: string
        sort_code:
          type: string
        sub_type:
          type: string
        swift:
          type: string
      title: BanksRequestPayload
    SubmitBanksRequestPayload:
      type: object
      properties:
        account_holder_name:
          type: string
        account_no:
          type: string
        address_id:
          type: integer
          format: int64
        bank_routing_number:
          type: string
        beneficiary_address_id:
          type: integer
          format: int64
        beneficiary_name:
          type: string
        entity_id:
          type: integer
          format: int64
        entity_type:
          type: string
        iban_aba:
          type: string
        ifsc:
          type: string
        name:
          type: string
        sort_code:
          type: string
        sub_type:
          type: string
        swift:
          type: string
      title: SubmitBanksRequestPayload