Partner Onboarding Endpoints
This endpoint is to register a partner
Headers
Name
Type
Description
Request Body
Name
Type
Description
Example request- 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",
"cookie": "connect.sid=s%253AoNBPv4ez8npeuKVKlS9KwX_1Dshiamlf.n8opjPuoF3XsU%252Be0VTLMUe6xzeAXmpCfQrpW9KW1KDs"
},
"body": {
"partner_code": "Binance",
"email": "sample@example.com"
}
})
.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": "sample@example.com"
}' Last updated