Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication. Format: Bearer YOUR_JWT_TOKEN |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| client_id | String | Yes | The unique client ID obtained from the initialize endpoint for the reverse penny drop verification |
{
"client_id": "reverse_penny_drop_jJhjvtijBXpKduHvxSUk"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the verification results |
| data.client_id | String | The unique client ID for this verification |
| data.details | Object | Complete details of the bank account verification |
| data.details.account_number | String | The bank account number to which the payment was made |
| data.details.ifsc | String | The IFSC code of the bank associated with the account |
| data.details.upi_id | String | UPI ID used for the payment transaction (if applicable) |
| data.details.amount | String | The amount transferred in the transaction (typically "1" for penny drop) |
| data.details.payment_mode | String | Mode of payment used (e.g., UPI, NEFT) |
| data.details.holder_name | String | Name of the account holder as returned by the bank |
| data.details.type | String | Type of transaction (credit or debit) |
| data.details.remitter_name | String | Name of the person who initiated the payment |
| data.details.status | String | Status of the verification (success or failed) |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the API request was successful |
| message | String | Human-readable message describing the result |
| message_code | String | Code representing the message for programmatic handling |
{
"data": {
"client_id": "reverse_penny_drop_prtkdSoSybrlmvZkzfCi",
"details": {
"account_number": "77780101256547",
"ifsc": "UBIN0123546",
"upi_id": "test@ybl",
"amount": "1",
"payment_mode": "UPI",
"holder_name": "TEST GUPTA",
"type": "credit",
"remitter_name": "TEST GUPTA",
"status": "success"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 400,
"success": false,
"message": "Invalid client_id provided",
"message_code": "invalid_client_id"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/bank-verification/reverse-penny-drop/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "reverse_penny_drop_jJhjvtijBXpKduHvxSUk"
}'{
"data": {
"client_id": "reverse_penny_drop_prtkdSoSybrlmvZkzfCi",
"details": {
"account_number": "77780101256547",
"ifsc": "UBIN0123546",
"upi_id": "test@ybl",
"amount": "1",
"payment_mode": "UPI",
"holder_name": "TEST GUPTA",
"type": "credit",
"remitter_name": "TEST GUPTA",
"status": "success"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}