Help with key.netfluid.io
 
This API supports JSON and has four functions for merchants, signup, token, kyc_make and kyc_upgrade.
 
The signup function is used to create a new wallet on the NetFluid System.
The token function is used to authenticate a wallet user and supply a temporary bearer token to use with all other API's.
The kyc_make function is used to create a new user.
The kyc_upgrade function is used to submit KYC documents to increase a user's KYC-Pass level.
 
Functions
 
Signup function details
To create a new wallet for use with system/API https://key.netfluid.io with a JSON body containing the following three variables :
Item Description
task signup (is the function to use in this case)
kyc_pass New Owner's KYC-Pass (Don't have one, use function kyc_make to create it.)
For example :
To create a new wallet call https://key.netfluid.io with a JSON body containing.
{
    "task": "signup",
    "kyc_pass": "KYC000000000099"
}
If the call is correct you will receive the following reply :
{
    "status": "1",
    "msg": "Success",
    "wallet_id": "1",
    "secret": "12345678910111213"
}
 
Token function details
To request a new temporary bearer token for api.netfluid.io call https://key.netfluid.io with a JSON body containing the following three variables :
Item Description
task token(is the function to use in this case)
Wallet_id Wallet_id you received when you created your wallet.
secret secret you received when you created your wallet.
For example :
To request a new temporary bearer token for New Test Company call https://key.netfluid.io with a JSON body containing.
{
    "task": "bearer_token",
    "Wallet_id": "1",
    "secret": "12345678910111213"
}
If the call is correct you will receive the following reply :
{
    "status": "1",
    "msg": "Success",
    "bearer_token": "26ccDD29237fD4Gc0655"
}
 
Kyc_make function details
To create a new user call with KYC-Pass call https://key.netfluid.io with a JSON body containing the following seven variables :
Item Description
task kyc_make(is the function to use in this case)
first_name New user's first name as it appears on their government issued passport or identity document
last_name New user's last name as it appears on their government issued passport or identity document
country_code New user's ISO alpha-2 country code
unit_number New user's unit/house/dwelling number
address_line1 New user's address line 1
address_line2 New user's address line 2
sub_area New user's suburb/area
city New user's city of residence
state New user's province/state
postal_code New user's postal/zip code
contact_email New user's email address (Will be used for requested correspondence/info and end user account recovery)
mobile New user's mobile number in International format (Will be used for requested correspondence/info and end user account recovery)
id_number Identity/Passport number as it appears on their government issued passport or identity document
merchant_kyc It is important to set this correctly to your merchant KYC-Pass when signing up new users (We use this to keep track of your referred parties)
For example :
To create new user under merchant with KYC000000000099 call https://key.netfluid.io with a JSON body containing.
{
    "task": "kyc_make",
    "first_name": "Joe",
    "last_name": "Bloggs",
    "country_code": "US",
    "unit_number": "1",
    "address_line1": "32nd street",
    "address_line2": "Queens",
    "sub_area": "Astoria",
    "city": "New York City",
    "state": "New York",
    "postal_code": "11102",
    "contact_email": "joeb@mailbox.com",
    "mobile": "14844731738",
    "id_number": "E00007730",
    "merchant_kyc": "KYC000000000099"
}
If the call is correct you will receive the following reply :
{
    "status": "1",
    "msg": "Success",
    "recovery_words": "MAX GOOD BUILD RED DONE POWER STORE MUSIC",
    "kyc_pass": "KYC000000000000",
    "kyc_level": "1"
}
Take note :
It is important to give the end user the recovery_words and instructing them to keep it safe.
The user will need the recovery_words to do extra account setup for use of virtual cards and account recovery if something goes wrong.
 
 
kyc_level function details
To get the level of a KYC-Pass call https://key.netfluid.io with a JSON body containing the following three variables :
Item Description
task Function to use, in this case it's set to kyc_level)
kyc_pass KYC-Pass to do the level enquiry on
For example :
To get the level of KYC000000000000 call https://key.netfluid.io with a JSON body containing.
{
    "task": "kyc_level",
    "kyc_pass": "KYC000000000000"
}
If the call is correct you will receive the following reply :
{
"status": "1",
"msg": "Success",
"kyc_pass": "KYC000000000000",
"kyc_level": "3"
}
 
Kyc_upgrade Function details
To submit files that upgrade a users KYC-Pass level usungPOST request with the following :
(Please allow 12 to 48 hours fur KYC-Pass update as files will be reviewed by support staff first)
Item Description
doc_upload The name of the form-data "key" containg the file you are submitting
kyc_pass KYC-Pass you are submitting a file for
file_description Set this to id_passport for a ID/Passport document
Set this to proof_of_residence if the document is a proof of residence
Set this to id_passport_selfie for a ID/Passport document that incudes the ID/Passport owner clearly visible in the image with the document
Set this to proof_of_residence_selfie for a proof of residence that also incudes the ID/Passport owner clearly visible in the image with the document
 
Understanding KYC level :
For a merchant to issue a customer with a virtual card that customer's KYC-Pass level must be at 3.
When you create a customer their KYC-Pass level is automatically set to 1.
As kyc_upgrade is used to submit documents they will be reviewed and set to verified if the document passed.
And as soon as ID/Passport+selfie or proof_of_residence+selfie is verified the KYC-Pass level will be set to 2 and if all four documents are verified KYC-Pass level will be set to 3.
 
For example :
Using basic html form to POST a file for KYC-Pass KYC000000000000 to https://key.netfluid.io.

<form action="https://key.netfluid.io" enctype="multipart/form-data">
	<input type="file" id="doc_upload" name="doc_upload" accept="image/jpeg,image/png,application/pdf"></input>
	<input type="text" value="KYC000000000000" id="kyc_pass" name="kyc_pass"></input>
	<button type="submit">Submit</button>
</form>

If the call is correct you will receive the following reply :
{
    "status": "1",
    "msg": "Success"
}
 
 
 
Loading... Please wait.