# Check Entity Webhook

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/business-onboarding/respCheckEntity:
    post:
      summary: Check Entity Webhook
      deprecated: false
      description: ''
      tags:
        - >-
          Bharat Connect (BBPS)/APIs - BBPS/Vendor Payment/Webhook/Business
          Onboarding
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CheckEntityResponse'
            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/Business
        Onboarding
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-18788140-run
components:
  schemas:
    CheckEntityResponse:
      required:
        - resp
        - instituteStatus
        - checkInstitute
      type: object
      properties:
        objectId:
          type: string
        resp:
          $ref: '#/components/schemas/Resp'
        instituteStatus:
          $ref: '#/components/schemas/InstituteInfo'
        checkInstitute:
          $ref: '#/components/schemas/CheckInstitute'
      x-apidog-orders:
        - objectId
        - resp
        - instituteStatus
        - checkInstitute
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    CheckInstitute:
      required:
        - docName
        - type
        - value
      type: object
      properties:
        docName:
          type: string
          enum:
            - PAN
        type:
          type: string
        value:
          pattern: ^[a-zA-Z0-9]{50}$
          type: string
        registeredName:
          type: string
      x-apidog-orders:
        - docName
        - type
        - value
        - registeredName
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    InstituteInfo:
      required:
        - institutes
      type: object
      properties:
        institutes:
          type: array
          items:
            $ref: '#/components/schemas/InstituteInfoInstitutes'
      x-apidog-orders:
        - institutes
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    InstituteInfoInstitutes:
      required:
        - status
        - multiOrgAllowed
      type: object
      properties:
        status:
          type: string
          enum:
            - EXISTING
            - NEW
        multiOrgAllowed:
          type: string
          enum:
            - 'YES'
            - 'NO'
        name:
          type: string
        b2bIds:
          type: array
          items:
            type: string
      x-apidog-orders:
        - status
        - multiOrgAllowed
        - name
        - b2bIds
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    Resp:
      required:
        - reqMsgId
        - result
      type: object
      properties:
        reqMsgId:
          type: string
        result:
          type: string
        errorCd:
          type: string
        errorDtl:
          type: string
        errorField:
          type: string
      x-apidog-orders:
        - reqMsgId
        - result
        - errorCd
        - errorDtl
        - errorField
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
