App Activate/Verify Endpoint
This is used to verify an app.
POST https://fuspay-kyc-prod-e9eb4fd3aa33.herokuapp.com/api/v1/app/verify
Request Body
Name
Type
Description
String
this is the email used to register your app
code
String
This is the verification token sent to your email
Response
{
"message": "Token verification successful",
"data": {
"_id": "68ecf5a09dae9ae0e57d2828",
"email": "[email protected]",
"password": "$2a$10$892GhOwGiMBa1.mW4LTEP.jzWXLAX8o8FN9iGYybAAfFuxd4R7PBG",
"name": "Xyz-app",
"origin": [
"http://localhost:5179",
"https://include-stage-89c7b78dfc34.herokuapp.com/"
],
"live_secret_key": "sk_f76514818ed2ceaffd1df010597f1505",
"live_public_key": "pk_b427da2f6ef04756",
"test_secret_key": "sk_test_ffe5a3f766fe6e0419c3dffdb8e4aeb8",
"test_public_key": "pk_test_f2ef5696566ef64b",
"callback": "",
"success_redirect_url": "",
"failure_redirect_url": "",
"event_callback_url": "",
"wallet_balance": 0,
"is_super_merchant": false,
"sub_merchant_tag": null,
"created_at": "2025-10-13T12:50:40.068Z",
"updated_at": "2025-10-13T12:59:34.589Z",
"__v": 0
}
}
Password to your Dashboard is sent to the email used to register your app. The Dashboard allows you to see all he KYC performed.
Last updated