Verify The Activation

Verify the activation of an inactive user

📘

Header Parameters

For Header Reference Click here

Request Parameters

NameTypeMandatory (M) , Optional (O)Description
mobileStringOCustomer mobile number
otpStringM6 digit number sent on customer mobile number through SMS
otpReferenceStringMreference number in response of Activate user API

Sample Request

curl --location --request POST 'https://api.instantpay.in/cards/prepaid/verifyActivateUser' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mobile":"7428585742",
    "otp": "12345",
    "otpReference": "876543211"
}'
POST cards/prepaid/verifyActivateUser HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
Content-Type: application/json

{
    "mobile":"7428585742",
    "otp": "12345",
    "otpReference": "876543211"
}'

📘

Response Parameters

For Response Reference Click here

Sample Response

{
   "statuscode": "TXN",
   "actcode": null,
   "status": "User Activated Successfully",
   "data": null,
   "timestamp": "2023-04-24 21:56:20",
   "ipay_uuid": "h0059be29cf0-9bc1-49ed-86bd-36ca6d0f6ed9-LmzZmBCOb7tc",
   "orderid": "1230424215619QEDEL",
   "environment": "LIVE",
   "internalCode": null

}

📘

Action Code Details

For Action Code details Click here

Language
Click Try It! to start a request and see the response here!