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

NameTypeDescription
Content-type*Stringapplication/json

Request Body

NameTypeDescription
email*String[email protected]

Response Body

200 OK

{
  "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: JSON.stringify({
    "email": "[email protected]"
  })
})
  .then(response => console.log(response))
  .catch(err => console.error(err));

Did this page help you?