Customer Reference
Request One-Time Link
The one-time link is returned upon successful verify registration. If the one-time link is expired before customer is able to complete the final registration process, you can request for a new one-time link.
Request a new customer's one-time link to complete the final registration process.
POST /v1/customer/request-one-time-link HTTP/1.1
Content-Type: application/json
Key: {API Key}
Sign: {Signature}
{
"customer": {
"identityNumber": "string"
}
}
Request
Body
application/json
Property | Type | Description |
---|---|---|
customer | object | The customer's object to request one-time link. |
customer.identityNumber | string | The customer's Identity Number, i.e. NRIC. |
Response
Body
application/json{
"code": 0,
"message": "string",
"data": {
"redirectOneTimeLink": "string",
"expiredOn": 1706600000000
}
}
Properties
Property | Type | Description |
---|---|---|
code | number | The response code. |
message | string | The response message. |
data | object | The response data object. |
data.redirectOneTimeLink | string | The one-time link that you will have to redirect the customer to complete the final registration process. |
data.expiredOn | number | The expiry date and time in unix milliseconds of the one-time link. |