Request OTP

Request OTP

The Request OTP API is used to request access to sensitive information, this will trigger a one time token password generation process. The user will need to provide this value on a subsequent call to the Verify OTP API NOTE: This API will send a text message (SMS) to the current user.

Input Parameters:

Name
Required
Definition
Comments

Purpose

Y

Format: String, 50 Description: Closed list of values, the following values are allowed "Dispute Management"

ID

Y

Format: Numeric, 1-19 Description: Input should be RPID in case IDType = RPID Input should be Card Number in case IDType = CardNumber

IDType

Y

Format options: CardNumber RPID SavingAccount

Do not allow card number (its useless and so we prevent it from being stored unsecure)

RequestedResult

Y

Format: String, 50 Description:Closed list of values, the following values are allowed CardNumber, ProcessorAccountNumber

Output Parameters:

XML Samples

Input XML

<?xml version="1.0"?>
<PraxellXMLRequest>
  <AuthenticationDetails>
    <SessionID>1234567890</SessionID>
    <ClientSourceIP></ClientSourceIP> 
 </AuthenticationDetails>
 <ServiceDetails>
    <UniqueRequestId>963369551</UniqueRequestId>
    <ServiceName>RequestOTP</ServiceName>
  </ServiceDetails>
  <Origin>
    <OriginType>ExtAPI</OriginType>
  </Origin>
  <ServiceParams>
    <Purpose></Purpose>
    <ID>123456789</ID>
    <IDType>RPID</IDType>
    <RequestedResult>CardNumber</RequestedResult>
  </ServiceParams>
</PraxellXMLRequest>

Last updated