Request Verification Token

This endpoint is used by 3rd party to get verification Token.

POST https://fuspay-kyc-prod-e9eb4fd3aa33.herokuapp.com/api/v1/request

The verification token will be sent to the email address

Request Header

Name
Type
Description

Content-type*

String

application/json

Request Body

Name
Type
Description

email*

String

Response Body

{
  "message": "Verifiection token sent successfully",
  "value": "123456"
}

Example Request- Code

const fetch = require('node-fetch');

fetch(" 
https://fuspay-kyc-ms-df741b092e53.herokuapp.com/api/v1
/request", {
  "method": "POST",
  "headers": {
    "Content-Type": "application/json",
  },
  "body": {
    "email": "[email protected]",
  }
})
  .then(response => console.log(response))
  .catch(err => console.error(err));

Last updated