# Respond Bid Response Webhook

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/finance/resp-respond-bid:
    post:
      summary: Respond Bid Response Webhook
      deprecated: false
      description: ''
      tags:
        - Bharat Connect (BBPS)/APIs - BBPS/Vendor Payment/Webhook/Financing
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RespondBidResponse'
            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/Webhook/Financing
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-18788134-run
components:
  schemas:
    RespondBidResponse:
      type: object
      properties:
        resp:
          type: object
          properties:
            reqMsgId:
              type: string
            result:
              type: string
            errorCd:
              type: string
            errorDtl:
              type: string
            errorField:
              type: string
          required:
            - reqMsgId
            - result
            - errorCd
            - errorDtl
            - errorField
          x-apidog-orders:
            - reqMsgId
            - result
            - errorCd
            - errorDtl
            - errorField
          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: []
        additionalInfos:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              value:
                type: string
            x-apidog-orders:
              - name
              - value
            x-apidog-ignore-properties: []
      required:
        - resp
        - bidResponse
        - additionalInfos
      x-apidog-orders:
        - resp
        - bidResponse
        - additionalInfos
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
