App Registration Endpoint
This endpoint is to register an app.
POST
https://fuspay-kyc-prod-e9eb4fd3aa33.herokuapp.com/api/v1/app/register
Content-Type*
String
application/json
Request Body
name
String
The name of your app
String
The email of the company
origin
Array
The domains you are calling from. this is whitelisted. eg "http://localhost:5179"
Response Body
Response Body description
message
String
This message says there is a verification token (6 digits) which has be sent to the email used on the register endpoint
e.g 123456
value
String
This is the verification token this has also been sent to your email.
e.g 123456
app
Object
This is an object describing the opp that just registered on the app register endpoint
verified
String
Verified means if the app has verified on the app verify endpoint using the verification Token
True/False
status
String
This is your app's status on our endpoint
Active/Inactive
_id
String
This is your app's ID on our system. App ID' s
created_at
Datetime
this is the time your app was registered on the KYC system
updated_at
Datetime
This is the last time a value was updated on your app's data
Example request Code.
Last updated