Skip to main content

Resend PIN/OTP (One-Time Password)

Description

This will trigger the workflow to resend the PIN/OTP to the customer. Useful if the customer misses or loses the pin. You can resend the OTP by calling.

Production Endpoint URL: https://api.cpaas.symphony.rakuten.net/twofa/v1/re-send-pin/$request_id

Methods: POST

HTTP Headers

ParameterRequiredValue
AuthenticationYType: Bearer
Token: JWT Token
AcceptYapplication/json
Content-TypeYapplication/json; charset=UTF-8

Request Body Schema: application/json

ParameterRequiredDescription/Values
request_idYThis is the request_id returned by platform when a new PIN is requested for

Response:

If successful, the API call will return an HTTP 200 OK with a Json document as a response. Please see section “Errors Codes" for a description of the failure responses.

ParameterDescription
successtrue
result_codeRefer Result Code List
result_messageDescription of the result code
client_referenceClient reference is returned only when specified in request.
request_idThe request_id provided in the request is returned for reference

Sample Response

{
"success" : true,
"result_code" : 0,
"result_message" : "Request successfully submitted",
"comment": "Request accepted to re-send PIN",
"client_reference": "...if provided during original request...",
"request_id" : "...the request_id provided in the request is returned for reference..."
}