Geniemode Invoice Finance Controller API

Invoice Finance Controller

Operations 26

GET /api/v1/path/finance/invoice index #
POST /api/v1/path/finance/invoice/block-invoice-no updateInvoiceStatus #
POST /api/v1/path/finance/invoice/buy-sell-invoice-excel-query buySellInvoiceExcelQuery #
GET /api/v1/path/finance/invoice/commission/excel-types getExcelTypesOnCommissionPage #
GET /api/v1/path/finance/invoice/commission/model index #
GET /api/v1/path/finance/invoice/commission/{finalInvoiceId}/next-invoice-number fetchNextInvoiceNumberFromFinalInvoiceId #
POST /api/v1/path/finance/invoice/excel excel #
POST /api/v1/path/finance/invoice/excel-base64 excelBase64 #
GET /api/v1/path/finance/invoice/final-invoice-excel finalInvoiceExcel #
GET /api/v1/path/finance/invoice/final-invoice-excel-base64 finalInvoiceExcelBase64 #
GET /api/v1/path/finance/invoice/final-invoice/excel-types getExcelTypesOnBuySellPage #
GET /api/v1/path/finance/invoice/next-invoice-number fetchNextInvoiceNumber #
GET /api/v1/path/finance/invoice/po-orders-excel poOrdersExcel #
GET /api/v1/path/finance/invoice/po-orders-excel-base64 poOrdersExcelBase64 #
POST /api/v1/path/finance/invoice/reserve-invoice-number reserveInvoiceNumber #
GET /api/v1/path/finance/invoice/reserved-invoice-number getReservedInvoiceNumber #
PUT /api/v1/path/finance/invoice/update-status/{invoiceId} updateInvoiceStatus #
PUT /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model updateInvoice #
PUT /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model/change/roe updateInvoiceRoe #
PUT /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model/{status} updateInvoice #
PUT /api/v1/path/finance/invoice/{finalInvoiceId}/docs addDocs #
DELETE /api/v1/path/finance/invoice/{finalInvoiceId}/docs/{docId} addDocs #
GET /api/v1/path/finance/invoice/{invoiceId} get #
PUT /api/v1/path/finance/invoice/{invoiceId}/empty/shipments emptyInvoiceShipments #
GET /api/v1/path/finance/invoice/{invoiceId}/next-invoice-number fetchNextInvoiceNumberFromInvoiceId #
GET /api/v1/path/finance/invoice/{invoiceType}/docs/types getDocTypesBasedOnInvoiceType #

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-invoice-finance-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-invoice-finance-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Cataloguing API.
  version: API V
  title: Cataloguing Invoice Finance 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: invoice-finance-controller
  description: Invoice Finance Controller
paths:
  /api/v1/path/finance/invoice:
    get:
      tags:
      - invoice-finance-controller
      summary: index
      operationId: indexUsingGET_12
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyName
        in: query
        required: false
        schema:
          type: string
      - name: endApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: isConsolidated
        in: query
        required: false
        schema:
          type: boolean
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/block-invoice-no:
    post:
      tags:
      - invoice-finance-controller
      summary: updateInvoiceStatus
      operationId: updateInvoiceStatusUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvoiceResponsePayload'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BlockInvoiceNoRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/buy-sell-invoice-excel-query:
    post:
      tags:
      - invoice-finance-controller
      summary: buySellInvoiceExcelQuery
      operationId: buySellInvoiceExcelQueryUsingPOST
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyName
        in: query
        required: false
        schema:
          type: string
      - name: endApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: isConsolidated
        in: query
        required: false
        schema:
          type: boolean
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
  /api/v1/path/finance/invoice/commission/excel-types:
    get:
      tags:
      - invoice-finance-controller
      summary: getExcelTypesOnCommissionPage
      operationId: getExcelTypesOnCommissionPageUsingGET
      parameters:
      - name: pageType
        in: query
        required: false
        schema:
          type: string
          enum:
          - cohort
          - dashboard_order
          - dashboard_sample_order
          - final_invoice
          - finance_commission_invoice
          - logistics_dashboard_shipments
          - possible_shipments
      - name: showHidden
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExcelTypesPayload'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/commission/model:
    get:
      tags:
      - invoice-finance-controller
      summary: index
      operationId: indexUsingGET_11
      parameters:
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyName
        in: query
        required: false
        schema:
          type: string
      - name: endApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: geniemodeEntityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: paymentAddedEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentAddedStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentCompleted
        in: query
        required: false
        schema:
          type: boolean
      - name: paymentEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        schema:
          type: string
          pattern: ^(approved|rejected|pending)$
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/commission/{finalInvoiceId}/next-invoice-number:
    get:
      tags:
      - invoice-finance-controller
      summary: fetchNextInvoiceNumberFromFinalInvoiceId
      operationId: fetchNextInvoiceNumberFromFinalInvoiceIdUsingGET
      parameters:
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        required: true
        schema:
          type: integer
          format: int64
      - name: raisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/excel:
    post:
      tags:
      - invoice-finance-controller
      summary: excel
      operationId: excelUsingPOST
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyName
        in: query
        required: false
        schema:
          type: string
      - name: endApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: isConsolidated
        in: query
        required: false
        schema:
          type: boolean
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ByteArrayResource'
  /api/v1/path/finance/invoice/excel-base64:
    post:
      tags:
      - invoice-finance-controller
      summary: excelBase64
      operationId: excelBase64UsingPOST
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: companyName
        in: query
        required: false
        schema:
          type: string
      - name: endApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: isConsolidated
        in: query
        required: false
        schema:
          type: boolean
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startApprovedTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
  /api/v1/path/finance/invoice/final-invoice-excel:
    get:
      tags:
      - invoice-finance-controller
      summary: finalInvoiceExcel
      operationId: finalInvoiceExcelUsingGET
      parameters:
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: geniemodeEntityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: grnStatus
        in: query
        required: false
        schema:
          type: string
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: paymentAddedEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentAddedStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentCompleted
        in: query
        required: false
        schema:
          type: boolean
      - name: paymentEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: type
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ByteArrayResource'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/final-invoice-excel-base64:
    get:
      tags:
      - invoice-finance-controller
      summary: finalInvoiceExcelBase64
      operationId: finalInvoiceExcelBase64UsingGET
      parameters:
      - name: endRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: geniemodeEntityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: grnStatus
        in: query
        required: false
        schema:
          type: string
      - name: leadIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: manufacturerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: paymentAddedEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentAddedStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentCompleted
        in: query
        required: false
        schema:
          type: boolean
      - name: paymentEndTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: paymentStartTs
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: startRaisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: status
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: type
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/final-invoice/excel-types:
    get:
      tags:
      - invoice-finance-controller
      summary: getExcelTypesOnBuySellPage
      operationId: getExcelTypesOnBuySellPageUsingGET
      parameters:
      - name: pageType
        in: query
        required: false
        schema:
          type: string
          enum:
          - cohort
          - dashboard_order
          - dashboard_sample_order
          - final_invoice
          - finance_commission_invoice
          - logistics_dashboard_shipments
          - possible_shipments
      - name: showHidden
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExcelTypesPayload'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/next-invoice-number:
    get:
      tags:
      - invoice-finance-controller
      summary: fetchNextInvoiceNumber
      operationId: fetchNextInvoiceNumberUsingGET
      parameters:
      - name: buyerType
        in: query
        required: false
        schema:
          type: string
      - name: cancelInvoiceNo
        in: query
        required: false
        schema:
          type: boolean
      - name: companyId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: finalInvoiceId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: financialYear
        in: query
        required: false
        schema:
          type: string
      - name: geniemodeEntityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: invoiceId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: invoiceNo
        in: query
        required: false
        schema:
          type: string
      - name: modelType
        in: query
        required: false
        schema:
          type: string
      - name: raisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: remark
        in: query
        required: false
        schema:
          type: string
      - name: reservationType
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/po-orders-excel:
    get:
      tags:
      - invoice-finance-controller
      summary: poOrdersExcel
      operationId: poOrdersExcelUsingGET
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: poNo
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ByteArrayResource'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/po-orders-excel-base64:
    get:
      tags:
      - invoice-finance-controller
      summary: poOrdersExcelBase64
      operationId: poOrdersExcelBase64UsingGET
      parameters:
      - name: brandId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: poNo
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/path/finance/invoice/reserve-invoice-number:
    post:
      tags:
      - invoice-finance-controller
      summary: reserveInvoiceNumber
      operationId: reserveInvoiceNumberUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FinalInvoiceNextInvoiceNumberRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/reserved-invoice-number:
    get:
      tags:
      - invoice-finance-controller
      summary: getReservedInvoiceNumber
      operationId: getReservedInvoiceNumberUsingGET
      parameters:
      - name: buyerType
        in: query
        required: false
        schema:
          type: string
      - name: cancelInvoiceNo
        in: query
        required: false
        schema:
          type: boolean
      - name: companyId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: finalInvoiceId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: financialYear
        in: query
        required: false
        schema:
          type: string
      - name: geniemodeEntityId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: invoiceId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: invoiceNo
        in: query
        required: false
        schema:
          type: string
      - name: modelType
        in: query
        required: false
        schema:
          type: string
      - name: raisedOnTimestamp
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: remark
        in: query
        required: false
        schema:
          type: string
      - name: reservationType
        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
  /api/v1/path/finance/invoice/update-status/{invoiceId}:
    put:
      tags:
      - invoice-finance-controller
      summary: updateInvoiceStatus
      operationId: updateInvoiceStatusUsingPUT
      parameters:
      - name: invoiceId
        in: path
        description: invoiceId
        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/InvoiceStatusFromFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model:
    put:
      tags:
      - invoice-finance-controller
      summary: updateInvoice
      operationId: updateInvoiceUsingPUT
      parameters:
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        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/CommissionModelFinalInvoiceFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model/change/roe:
    put:
      tags:
      - invoice-finance-controller
      summary: updateInvoiceRoe
      operationId: updateInvoiceRoeUsingPUT
      parameters:
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommissionModelFinalInvoiceResponsePayload'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CommissionModelFinalInvoiceFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/{finalInvoiceId}/commission/model/{status}:
    put:
      tags:
      - invoice-finance-controller
      summary: updateInvoice
      operationId: updateInvoiceUsingPUT_1
      parameters:
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        required: true
        schema:
          type: integer
          format: int64
      - name: status
        in: path
        description: status
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CommissionModelFinalInvoiceFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/{finalInvoiceId}/docs:
    put:
      tags:
      - invoice-finance-controller
      summary: addDocs
      operationId: addDocsUsingPUT
      parameters:
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        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/FinanceFinalInvoiceDocsDto'
        description: requestPayload
        required: true
  /api/v1/path/finance/invoice/{finalInvoiceId}/docs/{docId}:
    delete:
      tags:
      - invoice-finance-controller
      summary: addDocs
      operationId: addDocsUsingDELETE
      parameters:
      - name: docId
        in: path
        description: docId
        required: true
        schema:
          type: integer
          format: int64
      - name: finalInvoiceId
        in: path
        description: finalInvoiceId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
  /api/v1/path/finance/invoice/{invoiceId}:
    get:
      tags:
      - invoice-finance-controller
      summary: get
      operationId: getUsingGET_4
      parameters:
      - name: invoiceId
        in: path
        description: invoiceId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvoiceResponsePayload'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/

# --- truncated at 32 KB (65 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/geniemode/refs/heads/main/openapi/geniemode-invoice-finance-controller-api-openapi.yml