# Respond To Bid

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/finance/req-respond-bid:
    post:
      summary: Respond To Bid
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to respond to a bid submitted on the Bharat Connect
        platform through your EnKash account.

        This allows you to accept, reject, or negotiate a bid, enabling smooth
        collaboration and decision-making between buyers, suppliers, and
        financiers as part of the funding process.

        :::
      tags:
        - Bharat Connect (BBPS)/APIs - BBPS/Vendor Payment/Financing
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RespondBidRequest'
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  payload:
                    type: string
                  response_code:
                    type: integer
                  response_message:
                    type: string
                required:
                  - payload
                  - response_code
                  - response_message
                x-apidog-orders:
                  - payload
                  - response_code
                  - response_message
                x-apidog-ignore-properties: []
              example:
                payload: SUCCESS
                response_code: 0
                response_message: SUCCESS
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Bharat Connect (BBPS)/APIs - BBPS/Vendor Payment/Financing
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-10664771-run
components:
  schemas:
    RespondBidRequest:
      type: object
      properties:
        device:
          type: object
          properties:
            tag:
              type: object
              properties:
                name:
                  type: string
                  enum:
                    - GEOCODE
                    - IP
                    - AGENTID
                  x-apidog-enum:
                    - value: GEOCODE
                      name: ''
                      description: ''
                    - value: IP
                      name: ''
                      description: ''
                    - value: AGENTID
                      name: ''
                      description: ''
                value:
                  type: string
              required:
                - name
                - value
              x-apidog-orders:
                - name
                - value
              x-apidog-ignore-properties: []
          required:
            - tag
          x-apidog-orders:
            - tag
          x-apidog-ignore-properties: []
        bidResponse:
          type: object
          properties:
            faId:
              type: string
            financingRequestId:
              type: string
            financingRequestAmount:
              type: integer
            bidDetail:
              type: object
              properties:
                bidId:
                  type: string
                financierId:
                  type: string
                approvedAmount:
                  type: integer
                bidValue:
                  type: integer
                invoiceFinDetails:
                  type: array
                  items:
                    type: object
                    properties:
                      objectId:
                        type: string
                      approvedAmount:
                        type: integer
                      financingRequestAmount:
                        type: integer
                    x-apidog-orders:
                      - objectId
                      - approvedAmount
                      - financingRequestAmount
                    x-apidog-ignore-properties: []
                financeTermDoc:
                  type: string
              required:
                - bidId
                - financierId
                - approvedAmount
                - bidValue
                - invoiceFinDetails
                - financeTermDoc
              x-apidog-orders:
                - bidId
                - financierId
                - approvedAmount
                - bidValue
                - invoiceFinDetails
                - financeTermDoc
              x-apidog-ignore-properties: []
            initiatorB2bId:
              type: string
            response:
              type: string
          required:
            - faId
            - financingRequestId
            - financingRequestAmount
            - bidDetail
            - initiatorB2bId
            - response
          x-apidog-orders:
            - faId
            - financingRequestId
            - financingRequestAmount
            - bidDetail
            - initiatorB2bId
            - response
          x-apidog-ignore-properties: []
      required:
        - device
        - bidResponse
      x-apidog-orders:
        - device
        - bidResponse
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
