Partner Onboarding
POST https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/OnboardPartner
Headers
Name
Type
Description
Content-Type*
String
application/json
Request Body
Name
Type
Description
partner_code*
String
a code signifying the partner
email*
String
email of the partner
Response Body
{
"success": true,
"message": "API Keys generated. Please check your email to confirm",
"data": null
}Sample Code
const fetch = require('node-fetch');
fetch("https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/OnboardPartner", {
"method": "POST",
"headers": {
"Content-Type": "application/json"
},
"body": {
"partner_code": "Binance",
"email": "[email protected]"
}
})
.then(response => console.log(response))
.catch(err => console.error(err));curl "https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/OnboardPartner" \
-H 'Content-Type: application/json' \
-X POST \
-b 'connect.sid'='s%3AoNBPv4ez8npeuKVKlS9KwX_1Dshiamlf.n8opjPuoF3XsU%2Be0VTLMUe6xzeAXmpCfQrpW9KW1KDs' \
-d '{
"partner_code": "Binance",
"email": "[email protected]"
}' Last updated