Forgot Pin

This endpoint for reset pin incase merchant forgot existing pin. New pin will send to merchant via SMS at registered phone number in system.

Forgot Pin

POST https://tokoapi-stg.netzme.com/api/aggregator/merchant/pin/forgot_pin

Headers

NameTypeDescription

Content-Type*

string

application/json

Authorization*

string

See Authentication Page

Client-Id*

string

See Authentication Page

Request-Time*

string

See Authentication Page

Signature*

string

See Authentication Page

Request Body

NameTypeDescription

username*

string

merchant id

type*

string

value "forgot_pin"

requestId*

string

format {{clientId}}{{YYYYMMDDHHmmSS}}{{4 digit increments}} Sample : aggregator202103091544220001

{
    "requestId": "aggregator202103091544220001",
    "type": "forgot_pin",
    "status": 100,
    "statusMessage": "success",
    "body": {
        "timeLeftInMillis": 1800000,
        "pin": "672240"
    }
}

/* clear pin only provide in mock. 
   in production, clear pin will sent to merchant via SMS.
*/

Sample JSON Request :

{"requestId":"aggregator20210413171052471","type":"forgot_pin","body":{"username":"M_czBSCDVY"}}

Last updated