# Mandate Pre-debit Notification

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/upi-mandate/notify:
    post:
      summary: Mandate Pre-debit Notification
      deprecated: false
      description: >-

        :::highlight purple 📌

        EnKash sends a pre-debit notification to inform you and your customer
        before a scheduled UPI mandate debit occurs. This helps ensure
        compliance with regulatory requirements and provides transparency on
        upcoming deductions.

        :::
      tags:
        - Payment Gateway/APIs - Payment Gateway /UPI Autopay
      parameters:
        - name: merchantAccessKey
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                mandateId:
                  type: string
                amount:
                  type: number
                debitDate:
                  type: string
                  format: date
              x-apidog-orders:
                - mandateId
                - amount
                - debitDate
              required:
                - mandateId
                - amount
                - debitDate
              x--orders:
                - mandateId
                - amount
                - debitDate
              x--ignore-properties: []
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                x-apidog-refs:
                  01JKFRG31BZA7SNWH0D2SR78EH:
                    $ref: '#/components/schemas/ApplicationResponseObject'
                    x-apidog-overrides:
                      payload:
                        type: object
                        x-apidog-orders:
                          - mandateId
                          - predebitNotificationId
                          - status
                          - amount
                          - debitDate
                        properties:
                          mandateId:
                            type: string
                          predebitNotificationId:
                            type: string
                          status:
                            type: string
                          amount:
                            type: string
                          debitDate:
                            type: string
                        required:
                          - mandateId
                          - predebitNotificationId
                          - status
                          - amount
                          - debitDate
                    required: []
                x-apidog-orders:
                  - 01JKFRG31BZA7SNWH0D2SR78EH
                properties: {}
                x--orders: []
                x--ignore-properties: []
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Payment Gateway/APIs - Payment Gateway /UPI Autopay
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-13814647-run
components:
  schemas:
    ApplicationResponseObject:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: object
          x-apidog-orders: []
          x--orders: []
          properties: {}
          x--ignore-properties: []
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x--orders:
        - response_code
        - response_message
        - payload
      x--ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
