Geniemode Order Finance Controller API

Order Finance Controller

Operations 3

PUT /api/v1/path/finance/order/update-gst updateGst #
PUT /api/v1/path/finance/order/{orderId}/update-business-owner updateBusinessOwner #
PUT /api/v1/path/finance/order/{orderId}/update-discount updateDiscount #

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-order-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-order-finance-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Cataloguing API.
  version: API V
  title: Cataloguing Order 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: order-finance-controller
  description: Order Finance Controller
paths:
  /api/v1/path/finance/order/update-gst:
    put:
      tags:
      - order-finance-controller
      summary: updateGst
      operationId: updateGstUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateGstFromFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/order/{orderId}/update-business-owner:
    put:
      tags:
      - order-finance-controller
      summary: updateBusinessOwner
      operationId: updateBusinessOwnerUsingPUT
      parameters:
      - name: orderId
        in: path
        description: orderId
        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/UpdateBusinessOwnerFromFinanceRequestPayload'
        description: requestPayload
        required: true
  /api/v1/path/finance/order/{orderId}/update-discount:
    put:
      tags:
      - order-finance-controller
      summary: updateDiscount
      operationId: updateDiscountUsingPUT
      parameters:
      - name: orderId
        in: path
        description: orderId
        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/UpdateDiscountsFromFinanceRequestPayload'
        description: requestPayload
        required: true
components:
  schemas:
    UpdateDiscountsFromFinanceRequestPayload:
      type: object
      properties:
        discounts:
          type: array
          items:
            $ref: '#/components/schemas/UpdateDiscountFromFinanceRequestPayload'
      title: UpdateDiscountsFromFinanceRequestPayload
    PoVariantRequestPayload:
      type: object
      properties:
        hsn_code:
          type: string
        purchase_cgst:
          type: number
        purchase_igst:
          type: number
        purchase_sgst:
          type: number
        selling_cgst:
          type: number
        selling_igst:
          type: number
        selling_sgst:
          type: number
        variant_id:
          type: integer
          format: int64
      title: PoVariantRequestPayload
    UpdateDiscountFromFinanceRequestPayload:
      type: object
      properties:
        discount_charges:
          type: number
        discount_charges_cost_type:
          type: string
        discount_charges_percent:
          type: number
        discount_charges_type:
          type: string
          enum:
          - charges
          - commission
          - discount
        factory_discount_charges:
          type: number
        factory_discount_charges_cost_type:
          type: string
        factory_discount_charges_percent:
          type: number
        factory_discount_charges_type:
          type: string
          enum:
          - charges
          - commission
          - discount
        order_id:
          type: integer
          format: int64
      title: UpdateDiscountFromFinanceRequestPayload
    UpdateBusinessOwnerFromFinanceRequestPayload:
      type: object
      properties:
        business_owner_id:
          type: integer
          format: int64
      title: UpdateBusinessOwnerFromFinanceRequestPayload
    UpdateGstFromFinanceRequestPayload:
      type: object
      properties:
        variants:
          type: array
          items:
            $ref: '#/components/schemas/PoVariantRequestPayload'
      title: UpdateGstFromFinanceRequestPayload