- Introduction
- Process Flow
- Error Codes
- Common APIs
- Payout APIs
- Add NEFT/IMPS BeneficiaryPOST
- Add UPI BeneficiaryPOST
- Delete BeneficiaryPOST
- Get Beneficiary ListPOST
- NEFT/IMPS Validate BeneficiaryPOST
- Validate UPI BeneficiaryPOST
- Payout Transaction RequestPOST
- Direct Payout Transaction RequestPOST
- Transaction StatusPOST
- Transaction Status By Request IDPOST
- Payout Transaction ComplainPOST
- Payout CallbackPOST
- Virtual Account Wallet Credit CallbackPOST
- Service Bank ListPOST
- Service ListPOST
- Payin APIs
Merchant UTR Process
Testing
POST
/Payin/Action/merchantUTRProcess
Request
Body Params application/json
requestid
string
required
api_key
string
required
api_secret
string
required
utr
string
required
attempt_id
string
required
Example
{
"requestid": "{{request_id}}",
"api_key": "f68db941819657a1434b9bce0cd9811e",
"api_secret": "cabfc6c85d2c1ec57905d6f230784ca8",
"utr": "434888752765",
"attempt_id": "PATMPT250113185529QIBLOKNO"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://uat.nandishatech.com/WS/v1/Payin/Action/merchantUTRProcess' \
--header 'Content-Type: application/json' \
--data-raw '{
"requestid": "{{request_id}}",
"api_key": "f68db941819657a1434b9bce0cd9811e",
"api_secret": "cabfc6c85d2c1ec57905d6f230784ca8",
"utr": "434888752765",
"attempt_id": "PATMPT250113185529QIBLOKNO"
}'
Responses
🟢200Merchant UTR Process
application/json
Body
Resp_code
string
required
Resp_desc
string
required
requestid
string
required
data
object
required
transaction_id
string
required
amount
string
required
txn_status
string
required
attempt_id
string
required
order_id
string
required
date
string
required
Example
{
"Resp_code": "RCS",
"Resp_desc": "Request completed successfully!!",
"requestid": "73c41ca67abe40728201b",
"data": {
"transaction_id": "W250108184615PNWI",
"amount": "120.00",
"txn_status": "SUCCESS",
"attempt_id": "PATMPT250108184113JEPLTKDH",
"order_id": "POR250108184113GRHAXALS",
"date": "2025-01-08 18:46:16"
}
}
Modified at 2025-04-10 11:30:49