# Confirm Debit for Bill Payment

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/utilityPayment/status:
    put:
      summary: Confirm Debit for Bill Payment
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to confirm the debit of funds from your EnKash account for
        a bill payment.

        This API is typically used when you want to manually approve bills for
        payment, providing greater control over when funds are deducted.

        :::



        :::note[]

        If your configuration is set to automatically debit funds upon bill
        creation, calling this API is not required, as the debit would process
        during the bill creation process.

        :::
      tags:
        - Bharat Connect (BBPS)/APIs - BBPS/Bill Payment/Payment
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UtilityPaymentApprovalRequest'
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_code:
                    type: integer
                  response_message:
                    type: string
                  payload:
                    type: 'null'
                required:
                  - response_code
                  - response_message
                x-apidog-orders:
                  - response_code
                  - response_message
                  - payload
                x-apidog-ignore-properties: []
              example:
                response_code: 0
                response_message: Success
                payload: null
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Bharat Connect (BBPS)/APIs - BBPS/Bill Payment/Payment
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-10664802-run
components:
  schemas:
    UtilityPaymentApprovalRequest:
      required:
        - utilityPaymentIds
      type: object
      properties:
        utilityPaymentIds:
          maxItems: 1000
          minItems: 1
          type: array
          items:
            type: string
          description: List of bills to approve for debit funds
        approvalStatus:
          type: string
          enum:
            - CHECKER_APPROVED
          x-apidog-enum:
            - value: CHECKER_APPROVED
              name: ''
              description: ''
          description: 'Fix value: CHECKER_APPROVED'
        remarks:
          pattern: ^[A-Za-z0-9 ,@#$%^&*+:;?!()\-_"'`]{1,255}$
          type: string
          description: Optional remarks
      x-apidog-orders:
        - utilityPaymentIds
        - approvalStatus
        - remarks
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
