POST api/AEPSDirect/VerifyOTP?username={username}&password={password}&primaryKeyId={primaryKeyId}&encodeFPTxnId={encodeFPTxnId}&otp={otp}&imei={imei}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

password

string

Required

primaryKeyId

string

Required

encodeFPTxnId

string

Required

otp

string

Required

imei

string

Required

Body Parameters

None.

Response Information

Resource Description

KYCOTPResponse
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

data

Data

None.

statusCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "data": {
    "primaryKeyId": "sample string 1",
    "encodeFPTxnId": "sample string 2"
  },
  "statusCode": "sample string 3"
}

application/xml, text/xml

Sample:
<KYCOTPResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aathifrupay.Helpers.FINGPAYKYCOTPREQUESTModel">
  <data>
    <encodeFPTxnId>sample string 2</encodeFPTxnId>
    <primaryKeyId>sample string 1</primaryKeyId>
  </data>
  <message>sample string 2</message>
  <status>sample string 1</status>
  <statusCode>sample string 3</statusCode>
</KYCOTPResponse>