---
title: "Reverse a transfer"
method: POST
path: "/transfers/{id}/reversals"
tags: ["Transfers"]
---

# Reverse a transfer

`POST /transfers/{id}/reversals`

Move funds from a Linked Account back to the merchant. Partial reversals are supported. Multiple reversals per transfer are allowed as long as the total reversed amount does not exceed the transfer amount.

## Path parameters

- `id` string, required

## Request body

- object
  - `amount` integer — Amount to reverse in paise. Omit to reverse the full remaining amount.
  - `notes` Notes — Key-value pairs for storing custom metadata. Maximum 15 pairs. Each key and value must not exceed 256 characters.

## Response `200`

Reversal created.

- Reversal — A reversal of a transfer — moves funds back from the Linked Account to the merchant. Partial reversals are supported and multiple reversals per transfer are allowed. Prefix: rvrsl_
  - `id` string — Reversal ID. Prefix: rvrsl_
  - `entity` 'reversal'
  - `transfer_id` string — Transfer ID being reversed (trf_*).
  - `amount` integer — Reversed amount in paise.
  - `currency` 'INR'
  - `notes` Notes — Key-value pairs for storing custom metadata. Maximum 15 pairs. Each key and value must not exceed 256 characters.
  - `initiator_id` string — ID of the entity that initiated the reversal.
  - `created_at` integer

## Other responses

- `400` — Bad request. Invalid parameters or missing required fields.
- `401` — Authentication failed. Invalid or missing API key credentials.
- `404` — Resource not found.
- `429` — Rate limit exceeded. Implement exponential backoff with jitter before retrying.

---

[API](https://skmtc.net/curlec/apis/razorpay-api.md) · [All operations](https://skmtc.net/curlec/apis/razorpay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/curlec/razorpay-api/versions/824ca9e6faef/schema)
