Skip to main content
GET
/
remitter
/
status
Get Reverse Penny Drop Request Details
curl --request GET \
  --url https://sandbox.cashfree.com/verification/remitter/status \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
import requests

url = "https://sandbox.cashfree.com/verification/remitter/status"

headers = {
"x-client-id": "<api-key>",
"x-client-secret": "<api-key>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
method: 'GET',
headers: {'x-client-id': '<api-key>', 'x-client-secret': '<api-key>'}
};

fetch('https://sandbox.cashfree.com/verification/remitter/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.cashfree.com/verification/remitter/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-client-id: <api-key>",
"x-client-secret: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://sandbox.cashfree.com/verification/remitter/status"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-client-id", "<api-key>")
req.Header.Add("x-client-secret", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://sandbox.cashfree.com/verification/remitter/status")
.header("x-client-id", "<api-key>")
.header("x-client-secret", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://sandbox.cashfree.com/verification/remitter/status")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-client-id"] = '<api-key>'
request["x-client-secret"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "bank_account": "026291800001191",
  "ifsc": "YESB0000262",
  "upi": "success@upi",
  "name_at_bank": "BHARATHTEST GKUMARUT",
  "verification_id": "3890AAB000",
  "ref_id": "123",
  "utr": "33",
  "status": "SUCCESS",
  "name_match_score": "10",
  "name_match_result": "POOR_PARTIAL_MATCH",
  "added_on": "2023-06-27T12:34:47+05:30",
  "processed_on": "2023-06-27T18:15:02+05:30",
  "penny_collected_on": "2022-10-27T12:40:10+05:30",
  "reversal_status": "PENDING",
  "account_type": "SAVINGS"
}

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if two-factor authentication is selected as Public Key. More details.

Query Parameters

ref_id
string

It is the unique ID created by Cashfree Payments that you receive in the response of Create Reverse Penny Drop Request API.

verification_id
string

It is the unique ID created by you to identify the reverse penny drop verification request.

Response

Success response for retreiving the status of RPD request.

bank_account
string

It displays the bank account number of the individual.

Example:

"26291800001191"

ifsc
string

It displays the IFSC information of the individual's bank account.

Example:

"YESB0000262"

upi
string

It displays the UPI VPA information of the individual.

Example:

"success@upi"

name_at_bank
string

It displays the name of the individual registered in the bank records.

Example:

"JOHN DOE"

verification_id
string

It displays the unique ID created by you to identify the verifiation request.

Example:

"32"

ref_id
string

It displays the unique ID created by Cashfree Payments for reference purposes.

Example:

"33"

utr
string

It displays the unique transaction reference (UTR) number created by the bank to identify the transaction.

Example:

"33"

status
string

It displays the status of the API request. Possible values are

  • CREATED: The request is created, but no payment has been made yet.
  • SUCCESS: A successful transaction returns all fields in the response.
  • FAILURE: The payment attempt failed for an unspecified reason.
  • EXPIRED: The link in the create request call expires after 10 minutes if no payment is made.
Example:

"SUCCESS"

name_match_score
string

It displays the score of the name match verification.

Example:

"10"

name_match_result
string

It displays the result of the name match verification.

Example:

"POOR_PARTIAL_MATCH"

added_on
string

It displays the date and time of when the request was added.

Example:

"2023-06-27T12:34:47+05:30"

processed_on
string

It displays the date and time of when the request was processed.

Example:

"2023-06-27T18:15:02+05:30"

penny_collected_on
string

It displays the date and time of when the 1 rupee was collected.

Example:

"2022-10-27T12:40:10+05:30"

reversal_status
string

It displays the status of the rupee reversal. Possible values are:

  • TRANSFER_INITIATED: Reversal is initiated.
  • TRANSFER_SUCCESS: The reversal process is successful.
  • PENDING: The reversal is pending and not initiated yet.
  • FAILED: The reversal is failed.
Example:

"PENDING"

account_type
string

It displays the type of account.

Example:

"SAVINGS"