# Create Debit Using reserve pay

**Method:** `POST`

**Path:** `/ps/api/v1/public/subscriptions/{reserve_pay_sub_id}/presentations`

**Category:** UPI Reserve Pay

**Authentication:** Required

## Description

Creates a new presentation (mandate debit request) against an
active SBMD subscription. Presentations represent scheduled debit
requests raised against a customer mandate.


## Path Parameters

- `reserve_pay_sub_id` (`string`) **required** — Unique identifier for the subscription.

## Request Body

Content-Type: `application/json`

- `subscription_id` (`string`) — Unique identifier for the subscription.
- `amount` (`object`) — Monetary amount with currency for subscription-related APIs.
  - `value` (`integer`) **required** — Amount in the smallest currency unit (paisa for INR). Minimum ₹1 (100), maximum ₹10 lakh (100000000).
  - `currency` (`string`) **required** — Three-letter ISO 4217 currency code.

- `merchant_presentation_reference` (`string`) — Unique identifier of the merchant presentation reference.

### Example Request

```json
{
  "subscription_id": "v1-sub-250612062122-aa-3HLXL5",
  "amount": {
    "value": 1000,
    "currency": "INR"
  },
  "merchant_presentation_reference": "9caa061f-0e50-494b-aa13-8e902b0bef03"
}
```

## Responses

- `201` — Presentation created successfully.
- `500` — 

---

Reference: https://localhost:3000/api/upi-reserve-pay/create-reserve-pay-debit
