Geniemode Ftp Client Controller API

Ftp Client Controller

Operations 19

GET /api/v1/ftp/client/buyerPos buyerPos #
GET /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/files ftpBuyerPoIdFiles #
GET /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/files/{id} getFile #
POST /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/upload uploadFiles #
GET /api/v1/ftp/client/buyerPosFor855 buyerPosFor855 #
GET /api/v1/ftp/client/buyerPosFor856 buyerPosFor856 #
GET /api/v1/ftp/client/downloadAndMoveToProcessed downloadAndMoveToProcessed #
POST /api/v1/ftp/client/generate810/{fileId} generate810 #
POST /api/v1/ftp/client/generate855/{fileId} generate855 #
POST /api/v1/ftp/client/generate856 generate856 #
POST /api/v1/ftp/client/generate856Custom generate856Custom #
GET /api/v1/ftp/client/getInvoiceNumbers/{fileId} getInvoiceNumbers #
POST /api/v1/ftp/client/qtyLeft856/{fileId} qtyLeft856 #
GET /api/v1/ftp/client/readX12Document/{ediString} readX12Document #
POST /api/v1/ftp/client/save856Draft save856Draft #
POST /api/v1/ftp/client/send997/{id} uploadFiles #
GET /api/v1/ftp/client/sendEmail/{fileId} testEmail #
POST /api/v1/ftp/client/sendEmail/{ftpFileId}/{email} sendEmail #
POST /api/v1/ftp/client/viewSample viewSample #

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-ftp-client-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-ftp-client-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Cataloguing API.
  version: API V
  title: Cataloguing Ftp Client 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: ftp-client-controller
  description: Ftp Client Controller
paths:
  /api/v1/ftp/client/buyerPos:
    get:
      tags:
      - ftp-client-controller
      summary: buyerPos
      operationId: buyerPosUsingGET
      parameters:
      - name: draft
        in: query
        required: false
        schema:
          type: boolean
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: showAll
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/files:
    get:
      tags:
      - ftp-client-controller
      summary: ftpBuyerPoIdFiles
      operationId: ftpBuyerPoIdFilesUsingGET
      parameters:
      - name: ftpBuyerPoId
        in: path
        description: ftpBuyerPoId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/files/{id}:
    get:
      tags:
      - ftp-client-controller
      summary: getFile
      operationId: getFileUsingGET
      parameters:
      - name: ftpBuyerPoId
        in: path
        description: ftpBuyerPoId
        required: true
        schema:
          type: integer
          format: int64
      - name: id
        in: path
        description: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FtpFileDto'
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/buyerPos/{ftpBuyerPoId}/upload:
    post:
      tags:
      - ftp-client-controller
      summary: uploadFiles
      operationId: uploadFilesUsingPOST
      parameters:
      - name: ftpBuyerPoId
        in: path
        description: ftpBuyerPoId
        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/FtpSendFileDto'
        description: ftpSendFileDto
        required: true
  /api/v1/ftp/client/buyerPosFor855:
    get:
      tags:
      - ftp-client-controller
      summary: buyerPosFor855
      operationId: buyerPosFor855UsingGET
      parameters:
      - name: draft
        in: query
        required: false
        schema:
          type: boolean
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: showAll
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/buyerPosFor856:
    get:
      tags:
      - ftp-client-controller
      summary: buyerPosFor856
      operationId: buyerPosFor856UsingGET
      parameters:
      - name: draft
        in: query
        required: false
        schema:
          type: boolean
      - name: search
        in: query
        required: false
        schema:
          type: string
      - name: showAll
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/downloadAndMoveToProcessed:
    get:
      tags:
      - ftp-client-controller
      summary: downloadAndMoveToProcessed
      operationId: downloadAndMoveToProcessedUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/generate810/{fileId}:
    post:
      tags:
      - ftp-client-controller
      summary: generate810
      operationId: generate810UsingPOST
      parameters:
      - name: fileId
        in: path
        description: fileId
        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/RequestPayload810'
        description: requestPayload
        required: true
  /api/v1/ftp/client/generate855/{fileId}:
    post:
      tags:
      - ftp-client-controller
      summary: generate855
      operationId: generate855UsingPOST
      parameters:
      - name: fileId
        in: path
        description: fileId
        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/Ftp855AckPoLoopDto'
        description: requestPayload
        required: true
  /api/v1/ftp/client/generate856:
    post:
      tags:
      - ftp-client-controller
      summary: generate856
      operationId: generate856UsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPayload856'
        description: requestPayload
        required: true
  /api/v1/ftp/client/generate856Custom:
    post:
      tags:
      - ftp-client-controller
      summary: generate856Custom
      operationId: generate856CustomUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPayload856Custom'
        description: requestPayload
        required: true
  /api/v1/ftp/client/getInvoiceNumbers/{fileId}:
    get:
      tags:
      - ftp-client-controller
      summary: getInvoiceNumbers
      operationId: getInvoiceNumbersUsingGET
      parameters:
      - name: fileId
        in: path
        description: fileId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/qtyLeft856/{fileId}:
    post:
      tags:
      - ftp-client-controller
      summary: qtyLeft856
      operationId: qtyLeft856UsingPOST
      parameters:
      - name: fileId
        in: path
        description: fileId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: number
                  format: float
  /api/v1/ftp/client/readX12Document/{ediString}:
    get:
      tags:
      - ftp-client-controller
      summary: readX12Document
      operationId: readX12DocumentUsingGET
      parameters:
      - name: ediString
        in: path
        description: ediString
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/save856Draft:
    post:
      tags:
      - ftp-client-controller
      summary: save856Draft
      operationId: save856DraftUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPayload856Custom'
        description: requestPayload
        required: true
  /api/v1/ftp/client/send997/{id}:
    post:
      tags:
      - ftp-client-controller
      summary: uploadFiles
      operationId: uploadFilesUsingPOST_1
      parameters:
      - name: id
        in: path
        description: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
  /api/v1/ftp/client/sendEmail/{fileId}:
    get:
      tags:
      - ftp-client-controller
      summary: testEmail
      operationId: testEmailUsingGET
      parameters:
      - name: fileId
        in: path
        description: fileId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden!!!!!
        '500':
          description: 500 message
  /api/v1/ftp/client/sendEmail/{ftpFileId}/{email}:
    post:
      tags:
      - ftp-client-controller
      summary: sendEmail
      operationId: sendEmailUsingPOST
      parameters:
      - name: email
        in: path
        description: email
        required: true
        schema:
          type: string
      - name: ftpFileId
        in: path
        description: ftpFileId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
  /api/v1/ftp/client/viewSample:
    post:
      tags:
      - ftp-client-controller
      summary: viewSample
      operationId: viewSampleUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Class856'
components:
  schemas:
    Packet:
      type: object
      required:
      - order
      properties:
        breadth:
          type: number
          format: float
        cartonQuantity:
          type: integer
          format: int64
        cartonWeight:
          type: number
          format: float
        createdBy:
          type: string
        dimensionUnit:
          type: string
        height:
          type: number
          format: float
        id:
          type: integer
          format: int64
        length:
          type: number
          format: float
        lockedQuantity:
          type: integer
          format: int64
        order:
          $ref: '#/components/schemas/OrderDetail'
        packagingComplete:
          type: boolean
        packetVariants:
          type: array
          items:
            $ref: '#/components/schemas/PacketVariants'
        shipmentPackets:
          type: array
          items:
            $ref: '#/components/schemas/ShipmentPackets'
        weightUnit:
          type: string
      title: Packet
    ShipmentDoc:
      type: object
      required:
      - shipmentHop
      properties:
        createdBy:
          type: string
        documentType:
          type: string
        documentUrl:
          type: string
        id:
          type: integer
          format: int64
        shipmentHop:
          $ref: '#/components/schemas/ShipmentHop'
      title: ShipmentDoc
    Ftp855AckIPDto:
      type: object
      properties:
        new_price:
          type: string
      title: Ftp855AckIPDto
    OrderLogisticDocs:
      type: object
      properties:
        created_by:
          type: string
        id:
          type: integer
          format: int64
        order_logistic_details:
          $ref: '#/components/schemas/OrderLogisticDetails'
        s3_url:
          type: string
        type:
          type: string
        version:
          type: integer
          format: int64
      title: OrderLogisticDocs
    Ftp855AckIBDto:
      type: object
      properties:
        date:
          type: string
        new_qty:
          type: string
        type:
          type: string
      title: Ftp855AckIBDto
    ShipmentRef:
      type: object
      properties:
        reference_identification:
          type: string
        reference_identification_qualifier:
          type: string
      title: ShipmentRef
    FtpSendFileDto:
      type: object
      properties:
        file_type:
          type: string
        file_url:
          type: string
      title: FtpSendFileDto
    GeniemodeEntityTags:
      type: object
      required:
      - geniemodeEntity
      - tag
      properties:
        createdBy:
          type: string
        geniemodeEntity:
          $ref: '#/components/schemas/GeniemodeEntity'
        id:
          type: integer
          format: int64
        tag:
          type: string
      title: GeniemodeEntityTags
    ManufacturerDocs:
      type: object
      properties:
        auditStatus:
          type: string
        auditTs:
          type: integer
          format: int64
        auditorId:
          type: integer
          format: int64
        createdBy:
          type: string
        docCategory:
          type: string
        docExpiry:
          type: integer
          format: int64
        docSubCategory:
          type: string
        docUrl:
          type: string
        id:
          type: integer
          format: int64
        manufacturer:
          $ref: '#/components/schemas/Manufacturer'
        manufacturerUnit:
          $ref: '#/components/schemas/ManufacturerUnit'
      title: ManufacturerDocs
    GeniemodeEntity:
      type: object
      properties:
        addressId:
          type: integer
          format: int64
        addressList:
          type: array
          items:
            $ref: '#/components/schemas/GeniemodeEntityAddress'
        allowManualInvoiceNo:
          type: boolean
        compliance:
          type: string
        createdBy:
          type: string
        currency:
          type: string
        id:
          type: integer
          format: int64
        invoiceDeclaration:
          type: string
        label:
          type: string
        legalName:
          type: string
        tags:
          type: array
          items:
            $ref: '#/components/schemas/GeniemodeEntityTags'
        tallyCurrency:
          type: string
        value:
          type: string
      title: GeniemodeEntity
    PacketVariants:
      type: object
      required:
      - packet
      - variant
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        locked:
          type: boolean
        packet:
          $ref: '#/components/schemas/Packet'
        quantity:
          type: integer
          format: int64
        variant:
          $ref: '#/components/schemas/Variant'
      title: PacketVariants
    Ftp855AckDRDto:
      type: object
      properties:
        date:
          type: string
        new_qty:
          type: string
        type:
          type: string
      title: Ftp855AckDRDto
    ManufacturerAgreementDetails:
      type: object
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        indiaEntityBuySellModelAgreementApprovalDate:
          type: integer
          format: int64
        indiaEntityBuySellModelAgreementDocUrl:
          type: string
        indiaEntityBuySellModelAgreementJson:
          type: string
        indiaEntityBuySellModelAgreementLocation:
          type: string
        indiaEntityBuySellModelAgreementSignatureDocUrl:
          type: string
        indiaEntityCommissionModelAgreementApprovalDate:
          type: integer
          format: int64
        indiaEntityCommissionModelAgreementDocUrl:
          type: string
        indiaEntityCommissionModelAgreementJson:
          type: string
        indiaEntityCommissionModelAgreementLocation:
          type: string
        indiaEntityCommissionModelAgreementSignatureDocUrl:
          type: string
        manufacturerDetail:
          $ref: '#/components/schemas/Manufacturer'
        ukEntityBuySellModelAgreementApprovalDate:
          type: integer
          format: int64
        ukEntityBuySellModelAgreementDocUrl:
          type: string
        ukEntityBuySellModelAgreementJson:
          type: string
        ukEntityBuySellModelAgreementLocation:
          type: string
        ukEntityBuySellModelAgreementSignatureDocUrl:
          type: string
        ukEntityCommissionModelAgreementApprovalDate:
          type: integer
          format: int64
        ukEntityCommissionModelAgreementDocUrl:
          type: string
        ukEntityCommissionModelAgreementJson:
          type: string
        ukEntityCommissionModelAgreementLocation:
          type: string
        ukEntityCommissionModelAgreementSignatureDocUrl:
          type: string
        usEntityBuySellModelAgreementApprovalDate:
          type: integer
          format: int64
        usEntityBuySellModelAgreementDocUrl:
          type: string
        usEntityBuySellModelAgreementJson:
          type: string
        usEntityBuySellModelAgreementLocation:
          type: string
        usEntityBuySellModelAgreementSignatureDocUrl:
          type: string
        usEntityCommissionModelAgreementApprovalDate:
          type: integer
          format: int64
        usEntityCommissionModelAgreementDocUrl:
          type: string
        usEntityCommissionModelAgreementJson:
          type: string
        usEntityCommissionModelAgreementLocation:
          type: string
        usEntityCommissionModelAgreementSignatureDocUrl:
          type: string
      title: ManufacturerAgreementDetails
    VariantBuyerPoMapping:
      type: object
      required:
      - orderBuyerPo
      - variant
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        lockedQuantity:
          type: integer
          format: int64
        orderBuyerPo:
          $ref: '#/components/schemas/OrderBuyerPo'
        quantity:
          type: integer
          format: int64
        variant:
          $ref: '#/components/schemas/Variant'
      title: VariantBuyerPoMapping
    RequestPayload856ShipmentAddress:
      type: object
      properties:
        address_information_list:
          type: array
          items:
            $ref: '#/components/schemas/N3'
        city_name:
          type: string
        country_code:
          type: string
        entity_identifier_code:
          type: string
        name:
          type: string
        postal_code:
          type: string
        state:
          type: string
      title: RequestPayload856ShipmentAddress
    RequestPayload856Packet:
      type: object
      properties:
        carton_no:
          type: string
        item_list:
          type: array
          items:
            $ref: '#/components/schemas/RequestPayload856Item'
      title: RequestPayload856Packet
    DTM:
      type: object
      properties:
        date:
          type: string
        date_time_qualifier:
          type: string
      title: DTM
    ManufacturerEligibleCategories:
      type: object
      properties:
        category:
          type: string
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        manufacturer:
          $ref: '#/components/schemas/Manufacturer'
      title: ManufacturerEligibleCategories
    ShipmentVariantBuyerPoMapping:
      type: object
      required:
      - shipmentVariant
      - variantBuyerPoMapping
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        locked:
          type: boolean
        quantity:
          type: integer
          format: int64
        shipmentVariant:
          $ref: '#/components/schemas/ShipmentVariant'
        variantBuyerPoMapping:
          $ref: '#/components/schemas/VariantBuyerPoMapping'
      title: ShipmentVariantBuyerPoMapping
    OrderBuyerAssignee:
      type: object
      properties:
        buyerAssigneeId:
          type: integer
          format: int64
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        order:
          $ref: '#/components/schemas/OrderDetail'
      title: OrderBuyerAssignee
    RequestPayload856Order:
      type: object
      properties:
        buyer_po_no:
          type: string
        packet_list:
          type: array
          items:
            $ref: '#/components/schemas/RequestPayload856Packet'
      title: RequestPayload856Order
    ShipmentPackets:
      type: object
      required:
      - packet
      - shipment
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        locked:
          type: boolean
        packet:
          $ref: '#/components/schemas/Packet'
        quantity:
          type: integer
          format: int64
        shipment:
          $ref: '#/components/schemas/Shipment'
      title: ShipmentPackets
    ManufacturerUnit:
      type: object
      properties:
        addresses:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerAddress'
        auditComplete:
          type: boolean
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        manufacturer:
          $ref: '#/components/schemas/Manufacturer'
        manufacturerBase:
          $ref: '#/components/schemas/ManufacturerBase'
        manufacturerDocs:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerDocs'
        noOfMachines:
          type: integer
          format: int64
        noOfWorkers:
          type: integer
          format: int64
        preferredFactory:
          type: boolean
        ragRating:
          type: string
        workerType:
          type: string
      title: ManufacturerUnit
    RequestPayload856:
      type: object
      properties:
        all_list:
          type: array
          items:
            type: integer
            format: int64
        current_date:
          type: string
        current_time:
          type: string
        draft:
          type: boolean
        dtm:
          $ref: '#/components/schemas/DTM'
        receiver:
          type: string
        request_data:
          type: object
        sender:
          type: string
        shipment:
          $ref: '#/components/schemas/Shipment'
        shipment_identification:
          type: string
        transaction_set_purpose_code:
          type: string
        upload:
          type: boolean
      title: RequestPayload856
    TD5:
      type: object
      properties:
        identification_code:
          type: string
        identification_code_qualifier:
          type: string
      title: TD5
    ManufacturerBase:
      type: object
      properties:
        aadharNo:
          type: integer
          format: int64
        capacityPerMonth:
          type: integer
          format: int64
        capacityToGeniemode:
          type: string
        capacityUtilization:
          type: string
        cin:
          type: string
        exportLicenseNo:
          type: string
        gstNumber:
          type: string
        llpin:
          type: string
        name:
          type: string
        nid:
          type: string
        pan:
          type: string
        registrationNo:
          type: string
        tan:
          type: string
        tin:
          type: string
        typeOfCurrentBuyer:
          type: string
        vat:
          type: string
      title: ManufacturerBase
    ShipmentVariant:
      type: object
      required:
      - shipment
      - variant
      properties:
        buyerDiscountAmount:
          type: number
        buyerDiscountPercentage:
          type: number
        createdBy:
          type: string
        customFields:
          type: object
        factoryDiscountAmount:
          type: number
        factoryDiscountPercentage:
          type: number
        id:
          type: integer
          format: int64
        locked:
          type: boolean
        quantity:
          type: integer
          format: int64
        shipment:
          $ref: '#/components/schemas/Shipment'
        shipmentVariantBuyerPoMappings:
          type: array
          items:
            $ref: '#/components/schemas/ShipmentVariantBuyerPoMapping'
        variant:
          $ref: '#/components/schemas/Variant'
      title: ShipmentVariant
    Ftp855AckIQDto:
      type: object
      properties:
        new_qty:
          type: string
      title: Ftp855AckIQDto
    Manufacturer:
      type: object
      properties:
        addresses:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerAddress'
        brandName:
          type: string
        buyerName:
          type: string
        catalougeShootImageAvailable:
          type: string
        catalougeSize:
          type: string
        createdBy:
          type: string
        directors:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerDirector'
        eligibleCategories:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerEligibleCategories'
        financialBacking:
          type: string
        firmType:
          type: string
        gaId:
          type: string
        hasOwnLabel:
          type: boolean
        id:
          type: integer
          format: int64
        manufacturerAgreementDetails:
          $ref: '#/components/schemas/ManufacturerAgreementDetails'
        manufacturerBase:
          $ref: '#/components/schemas/ManufacturerBase'
        manufacturerDocs:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerDocs'
        manufacturerRatingDetails:
          $ref: '#/components/schemas/ManufacturerRatingDetails'
        needAdvancePayment:
          type: boolean
        onBoardingTeamMemberName:
          type: string
        prevYearTurnover:
          type: number
          format: float
        products:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerProductMap'
        region:
          type: string
        stepsCompleted:
          type: integer
          format: int64
        supplierSubType:
          type: string
        supplierType:
          type: string
        type:
          type: string
        udyamRegistrationCertificatePresent:
          type: boolean
        units:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerUnit'
        website:
          type: string
      title: Manufacturer
    OrderManufacturerAssignee:
      type: object
      properties:
        createdBy:
          type: string
        id:
          type: integer
          format: int64
        manufacturerAssigneeId:
          type: integer
          format: int64
        order:
          $ref: '#/components/schemas/OrderDetail'
      title: OrderManufacturerAssignee
    OrderDetail:
      type: object
      properties:
        adFactSheetStyle:
          type: boolean
        advancePaymentTerms:
          type: string
        assignee:
          type: integer
          format: int64
        billAddressId:
          type: integer
          format: int64
        brandId:
          type: integer
          format: int64
        businessOwner:
          $ref: '#/components/schemas/BusinessOwner'
        buyerCategoryNumber:
          type: string
        buyerDays:
          type: integer
          format: int64
        buyerEtaDate:
          type: string
          example: MM-dd-YY
        buyerGeniemodeEntity:
          $ref: '#/components/schemas/GeniemodeEntity'
        buyerGstin:
          type: string
        buyerHandoverDate:
          type: integer
          format: int64
        buyerPaymentType:
          type: string
        bypassFinanceApproval:
          type: boolean
        bypassVpApproval:
          type: boolean
        catalougeId:
          type: integer
          format: int64
        checksum:
          type: string
        checksumNextWindows:
          type: string
        checksumPreWindows:
          type: string
        clientId:
          type: integer
          format: int64
        companyId:
          type: integer
          format: int64
        companyName:
          type: string
        completionStatus:
          type: string
        confirmationDate:
          type: string
          example: MM-dd-YY
        conversionRate:
          type: number
        copyFromOrderId:
          $ref: '#/components/schemas/OrderDetail'
        createdBy:
          type: string
        currency:
          type: string
        currencyConversionDate:
          type: string
          example: MM-dd-YY
        currentAmount:
          type: number
        currentStatus:
          type: string
        deliveryCategoryDate:
          type: integer
          format: int64
        department:
          type: string
        docId:
          type: integer
          format: int64
        duty:
          type: number
        ecomOrder:
          type: boolean
        elc:
          type: number
        etaDate:
          type: string
          example: MM-dd-YY
        etaDateChangeReason:
          type: string
        etaDateChangeReasonDocument:
          type: string
        factoryConversion:
          type: number
        factoryConversionDate:
          type: string
          example: MM-dd-YY
        factoryCurrency:
          type: string
        factoryEtaDate:
          type: string
          example: MM-dd-YY
        factoryHandoverDate:
          type: integer
          format: int64
        factoryPaymentType:
          type: string
        financeApprovalDate:
          type: string
          format: date-time
        financeApprovedOnce:
          type: boolean
        financialStatus:
          type: string
        financialStatusUpdatedAt:
          type: integer
          format: int64
        fptDoc:
          $ref: '#/components/schemas/Doc'
        geniem

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