Geniemode Order Controller API

Order Controller

Operations 58

POST /api/orders/BulkOrderCreation mapReapExcelDatatoDB #
POST /api/orders/ChangeOrderStatus change_order_status #
GET /api/orders/CompleteOrder complete_order #
POST /api/orders/CompleteOrderList CompleteOrderList #
POST /api/orders/CreateOrder create_order #
GET /api/orders/EncodeOrderId encode_orderId #
GET /api/orders/GetAllClientOrders/{userName} clientOrdersLite #
POST /api/orders/GetAllOrder get_all #
GET /api/orders/GetAllOrdersLite index_light #
POST /api/orders/GetAllOrdersLite index_light_post #
GET /api/orders/GetAllParentsOrders GetAllParentsOrders #
GET /api/orders/GetAllQcSteps GetAllQcSteps #
POST /api/orders/GetOrder get_order #
GET /api/orders/GetOrder/{orderId} getOrderView #
GET /api/orders/GetOrder/{orderId}/child-orders getChildOrders #
GET /api/orders/GetOrderAndSkuSummaryOfMasterOrder/{orderId} GetOrderAndSkuSummaryOfMasterOrder #
GET /api/orders/GetOrderStep/{orderId}/{stepId} getOrderViewStep #
GET /api/orders/GetOrderSteps/{orderId} getOrderViewSteps #
GET /api/orders/GetSkuSummaryOfMasterOrder/{orderId} GetSkuSummaryOfMasterOrder #
GET /api/orders/GetStepDateInfo GetStepDateInfo #
PUT /api/orders/MoveToDraft/{orderId} move_order_to_draft #
DELETE /api/orders/RemovePackage removePackageFromOrder #
DELETE /api/orders/RemovePackageItem removePackageItemFromOrder #
POST /api/orders/SearchOrder index #
PUT /api/orders/UpdateManufacturerComments index #
PUT /api/orders/UpdateOrder update_order #
PUT /api/orders/UpdateOrder/MarkInventoryCreated markInventoryCreatedForOrder #
PUT /api/orders/UpdateOrder/revertCompletedStep revertCompletedStep #
PUT /api/orders/UpdateOrderGen update_order_gen #
PUT /api/orders/UpdateOrderStep/bulk update_order_step_bulk #
PUT /api/orders/UpdateQcSteps UpdateQcSteps #
POST /api/orders/add/leads addOrderLeads #
GET /api/orders/all/lead/{leadId} clientOrdersLite #
POST /api/orders/assignOrder assign_order #
GET /api/orders/auditorListing auditorListing #
GET /api/orders/auditorUserList auditorUserList #
POST /api/orders/bulkAssignOrder assign_order #
GET /api/orders/checkSkuCosting check_sku_costing #
GET /api/orders/checkSkuOrder check_sku_order #
GET /api/orders/get/stepDates getStepDates #
GET /api/orders/getAllCurrency allCurrency #
GET /api/orders/getForwarderQuotationOrderData getForwarderQuotationOrderData #
GET /api/orders/lead/order/{leadId} getLeadOrders #
POST /api/orders/lead/orderAmount getLeadsOrderAmount #
POST /api/orders/lead/orderDetails getLeadsOrderDetails #
PUT /api/orders/log/relic logToNewRelic #
GET /api/orders/my-orders myOrders #
GET /api/orders/my-orders-lite myOrdersLite #
GET /api/orders/newListing get_dashboard_orders_page2 #
POST /api/orders/orderAmount getOrderAmount #
GET /api/orders/orderHistory assign_order_history #
GET /api/orders/orderslist/GetAllOrdersLite getAllOrdersList #
GET /api/orders/orderslist/inventory/GetAllOrdersLite getAllOrdersListForInventoryCreation #
GET /api/orders/poFinanceListing poFinanceListing #
POST /api/orders/sku/manufacturerIds getManufacturerIdForSku #
PUT /api/orders/update/lead updateLead #
PUT /api/orders/updateAuditor updateAuditor #
GET /api/orders/value-summary getOrdersValueSummary #

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-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-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Cataloguing API.
  version: API V
  title: Cataloguing Order 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-controller
  description: Order Controller
paths:
  /api/orders/BulkOrderCreation:
    post:
      tags:
      - order-controller
      summary: mapReapExcelDatatoDB
      operationId: mapReapExcelDatatoDBUsingPOST
      parameters:
      - name: sheet
        in: query
        description: sheet
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkOrderCreationResponse'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: string
              format: binary
        description: file
        required: true
  /api/orders/ChangeOrderStatus:
    post:
      tags:
      - order-controller
      summary: change_order_status
      operationId: change_order_statusUsingPOST_1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeOrderStatusRequest'
        description: requestPayload
        required: true
  /api/orders/CompleteOrder:
    get:
      tags:
      - order-controller
      summary: complete_order
      operationId: complete_orderUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderUpdateMessage'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/CompleteOrderList:
    post:
      tags:
      - order-controller
      summary: CompleteOrderList
      operationId: CompleteOrderListUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderUpdateMessage'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompleteOrderListRequestPayload'
        description: requestPayload
        required: true
  /api/orders/CreateOrder:
    post:
      tags:
      - order-controller
      summary: create_order
      operationId: create_orderUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOrderResponseDto'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOrderRequestPayload'
        description: orderRequestPayload
        required: true
  /api/orders/EncodeOrderId:
    get:
      tags:
      - order-controller
      summary: encode_orderId
      operationId: encode_orderIdUsingGET
      parameters:
      - name: orderId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncodeOrderIdResponse'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetAllClientOrders/{userName}:
    get:
      tags:
      - order-controller
      summary: clientOrdersLite
      operationId: clientOrdersLiteUsingGET_1
      parameters:
      - name: approvalStatus
        in: query
        required: false
        schema:
          type: string
      - name: assigneeIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: businessOwnerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: buyerExFactoryEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: buyerExFactoryStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: confirmationDateEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: confirmationDateStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: draftOrders
        in: query
        required: false
        schema:
          type: boolean
      - name: fieldName
        in: query
        required: false
        schema:
          type: string
      - name: filters
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: financeApprovedOnce
        in: query
        required: false
        schema:
          type: boolean
      - name: financialStatus
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: forPo
        in: query
        required: false
        schema:
          type: boolean
      - name: fromDb
        in: query
        required: false
        schema:
          type: boolean
      - name: getDataFor
        in: query
        required: false
        schema:
          type: string
      - name: havingShipmentsOnly
        in: query
        required: false
        schema:
          type: boolean
      - name: inventoryCreated
        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: modelTypes
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: opsAssigneeIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: orderIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: parentOrderOnly
        in: query
        required: false
        schema:
          type: boolean
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: searchList
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: object
      - name: skipList
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: typeOfDelivery
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: userName
        in: path
        description: userName
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetAllOrder:
    post:
      tags:
      - order-controller
      summary: get_all
      operationId: get_allUsingPOST_1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderSearchRequestPayload'
        description: orderSearchRequestPayload
        required: true
  /api/orders/GetAllOrdersLite:
    get:
      tags:
      - order-controller
      summary: index_light
      operationId: index_lightUsingGET_1
      parameters:
      - name: approvalStatus
        in: query
        required: false
        schema:
          type: string
      - name: assigneeIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: businessOwnerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: buyerExFactoryEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: buyerExFactoryStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: confirmationDateEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: confirmationDateStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: draftOrders
        in: query
        required: false
        schema:
          type: boolean
      - name: fieldName
        in: query
        required: false
        schema:
          type: string
      - name: filters
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: financeApprovedOnce
        in: query
        required: false
        schema:
          type: boolean
      - name: financialStatus
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: forPo
        in: query
        required: false
        schema:
          type: boolean
      - name: fromDb
        in: query
        required: false
        schema:
          type: boolean
      - name: getDataFor
        in: query
        required: false
        schema:
          type: string
      - name: havingShipmentsOnly
        in: query
        required: false
        schema:
          type: boolean
      - name: inventoryCreated
        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: modelTypes
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: opsAssigneeIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: orderIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: parentOrderOnly
        in: query
        required: false
        schema:
          type: boolean
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: searchList
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: object
      - name: skipList
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: typeOfDelivery
        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
    post:
      tags:
      - order-controller
      summary: index_light_post
      operationId: index_light_postUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderSearchRequestPayload'
        description: orderSearchRequestPayload
        required: true
  /api/orders/GetAllParentsOrders:
    get:
      tags:
      - order-controller
      summary: GetAllParentsOrders
      operationId: GetAllParentsOrdersUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: integer
                  format: int64
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetAllQcSteps:
    get:
      tags:
      - order-controller
      summary: GetAllQcSteps
      operationId: GetAllQcStepsUsingGET
      parameters:
      - name: orderId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QcStepFiltersDTO'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetOrder:
    post:
      tags:
      - order-controller
      summary: get_order
      operationId: get_orderUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderResponsePayload'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetOrderRequestPayload'
        description: requestPayload
        required: true
  /api/orders/GetOrder/{orderId}:
    get:
      tags:
      - order-controller
      summary: getOrderView
      operationId: getOrderViewUsingGET
      parameters:
      - name: baseDate
        in: query
        required: false
        schema:
          type: string
      - name: checkExFactory
        in: query
        required: false
        schema:
          type: boolean
      - name: checkOrderConfirmation
        in: query
        required: false
        schema:
          type: boolean
      - name: lineVariables
        in: query
        required: false
        schema:
          type: boolean
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      - name: stepName
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderViewResponsePayload'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetOrder/{orderId}/child-orders:
    get:
      tags:
      - order-controller
      summary: getChildOrders
      operationId: getChildOrdersUsingGET
      parameters:
      - name: baseDate
        in: query
        required: false
        schema:
          type: string
      - name: checkExFactory
        in: query
        required: false
        schema:
          type: boolean
      - name: checkOrderConfirmation
        in: query
        required: false
        schema:
          type: boolean
      - name: lineVariables
        in: query
        required: false
        schema:
          type: boolean
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      - name: stepName
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GetOrdersViewChildDTO'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetOrderAndSkuSummaryOfMasterOrder/{orderId}:
    get:
      tags:
      - order-controller
      summary: GetOrderAndSkuSummaryOfMasterOrder
      operationId: GetOrderAndSkuSummaryOfMasterOrderUsingGET
      parameters:
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderAndSkuSummaryResponse'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetOrderStep/{orderId}/{stepId}:
    get:
      tags:
      - order-controller
      summary: getOrderViewStep
      operationId: getOrderViewStepUsingGET
      parameters:
      - name: baseDate
        in: query
        required: false
        schema:
          type: string
      - name: checkExFactory
        in: query
        required: false
        schema:
          type: boolean
      - name: checkOrderConfirmation
        in: query
        required: false
        schema:
          type: boolean
      - name: lineVariables
        in: query
        required: false
        schema:
          type: boolean
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      - name: stepId
        in: path
        description: stepId
        required: true
        schema:
          type: integer
          format: int64
      - name: stepName
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WfStepOrderViewMapDto'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetOrderSteps/{orderId}:
    get:
      tags:
      - order-controller
      summary: getOrderViewSteps
      operationId: getOrderViewStepsUsingGET
      parameters:
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WfStepOrderViewMapDto'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetSkuSummaryOfMasterOrder/{orderId}:
    get:
      tags:
      - order-controller
      summary: GetSkuSummaryOfMasterOrder
      operationId: GetSkuSummaryOfMasterOrderUsingGET
      parameters:
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SkuSummaryDto'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/GetStepDateInfo:
    get:
      tags:
      - order-controller
      summary: GetStepDateInfo
      operationId: GetStepDateInfoUsingGET
      parameters:
      - name: baseDate
        in: query
        required: false
        schema:
          type: string
      - name: orderId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetStepDateInfo'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/orders/MoveToDraft/{orderId}:
    put:
      tags:
      - order-controller
      summary: move_order_to_draft
      operationId: move_order_to_draftUsingPUT
      parameters:
      - name: orderId
        in: path
        description: orderId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
  /api/orders/RemovePackage:
    delete:
      tags:
      - order-controller
      summary: removePackageFromOrder
      operationId: removePackageFromOrderUsingDELETE
      parameters:
      - name: orderid
        in: query
        description: orderid
        required: false
        schema:
          type: integer
          format: int64
      - name: packageid
        in: query
        description: packageid
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
  /api/orders/RemovePackageItem:
    delete:
      tags:
      - order-controller
      summary: removePackageItemFromOrder
      operationId: removePackageItemFromOrderUsingDELETE
      parameters:
      - name: orderid
        in: query
        description: orderid
        required: true
        schema:
          type: integer
          format: int64
      - name: packageid
        in: query
        description: packageid
        required: true
        schema:
          type: integer
          format: int64
      - name: packageitemid
        in: query
        description: packageitemid
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
  /api/orders/SearchOrder:
    post:
      tags:
      - order-controller
      summary: index
      operationId: indexUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderSearchRequestPayload'
        description: orderSearchRequestPayload
        required: true
  /api/orders/UpdateManufacturerComments:
    put:
      tags:
      - order-controller
      summary: index
      operationId: indexUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateManufacturerCommentRequestPayload'
        description: updateManufacturerCommentRequestPayload
        required: true
  /api/orders/UpdateOrder:
    put:
      tags:
      - order-controller
      summary: update_order
      operationId: update_orderUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOrderResponseDto'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrderRequestPayload'
        description: orderRequestPayload
        required: true
  /api/orders/UpdateOrder/MarkInventoryCreated:
    put:
      tags:
      - order-controller
      summary: markInventoryCreatedForOrder
      operationId: markInventoryCreatedForOrderUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOrderResponseDto'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrderRequestPayload'
        description: orderRequestPayload
        required: true
  /api/orders/UpdateOrder/revertCompletedStep:
    put:
      tags:
      - order-controller
      summary: revertCompletedStep
      operationId: revertCompletedStepUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RevertCompletedStepResponsePayload'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RevertCompletedStepPayload'
        description: revertCompletedStepPayload
        required: true
  /api/orders/UpdateOrderGen:
    put:
      tags:
      - order-controller
      summary: update_order_gen
      operationId: update_order_genUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateOrderGenResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrderGenRequestPayload'
        description: requestPayload
        required: true
  /api/orders/UpdateOrderStep/bulk:
    put:
      tags:
      - order-controller
      summary: update_order_step_bulk
      operationId: update_order_step_bulkUsingPUT
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrderStepBulkPayload'
        description: orderStepBulkRequestPayload
        required: true
  /api/orders/UpdateQcSteps:
    put:
      tags:
      - order-controller
      summary: UpdateQcSteps
      operationId: UpdateQcStepsUsingPUT
      parameters:
      - name: orderId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateQcStepsRequestPayload'
        description: updateQcStepsRequestPayload
        required: true
  /api/orders/add/leads:
    post:
      tags:
      - order-controller
      summary: addOrderLeads
      operationId: addOrderLeadsUsingPOST
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderLeadsRequestPayload'
        description: orderLeadsRequestPayload
        required: true
  /api/orders/all/lead/{leadId}:
    get:
      tags:
      - order-controller
      summary: clientOrdersLite
      operationId: clientOrdersLiteUsingGET
      parameters:
      - name: approvalStatus
        in: query
        required: false
        schema:
          type: string
      - name: assigneeIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: brandIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: businessOwnerIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: buyerExFactoryEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: buyerExFactoryStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: companyIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      - name: confirmationDateEndDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: confirmationDateStartDate
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: draftOrders
        in: query
        requir

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