GET
/
remitter
/
status
curl --request GET \
  --url https://sandbox.cashfree.com/verification/remitter/status \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "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

Client ID. You can find your ID in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret key in the Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if IP is not whitelisted

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

200
application/json
Success response for retreiving the status of RPD request

Reverse penny drop verification successful

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"