VyomPay
  1. Payin APIs
VyomPay
  • Introduction
  • Process Flow
  • Error Codes
  • Common APIs
    • Wallet Balance Check
      POST
  • Payout APIs
    • Add NEFT/IMPS Beneficiary
      POST
    • Add UPI Beneficiary
      POST
    • Delete Beneficiary
      POST
    • Get Beneficiary List
      POST
    • NEFT/IMPS Validate Beneficiary
      POST
    • Validate UPI Beneficiary
      POST
    • Payout Transaction Request
      POST
    • Direct Payout Transaction Request
      POST
    • Transaction Status
      POST
    • Transaction Status By Request ID
      POST
    • Payout Transaction Complain
      POST
    • Payout Callback
      POST
    • Virtual Account Wallet Credit Callback
      POST
    • Service Bank List
      POST
    • Service List
      POST
  • Payin APIs
    • Generate Merchant Payment Link
      POST
    • Generate Merchant PG Order
      POST
    • Generate Merchant UPI PG QR
      POST
    • Merchant UTR Process
      POST
    • Check Order Status
      POST
    • Payin Callback
      POST
  1. Payin APIs

Merchant UTR Process

Testing
POST
/Payin/Action/merchantUTRProcess

Request

Body Params application/json
requestid
string 
required
A unique id referencing the current request
api_key
string 
required
api_key
api_secret
string 
required
api_secret
utr
string 
required
Unique Transaction Reference
attempt_id
string 
required
attempt_id shared to you in response of MerchantUPIPgOrder
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
Previous
Generate Merchant UPI PG QR
Next
Check Order Status
Built with