Regenerate Partners Public & Private Keys
This endpoint is used by partners to regenerate their keys
POST
https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/OnboardPartner./
A One time reset link is sent to the partner email address to regenerate the keys
Old keys becomes invalid
Headers
Name
Type
Description
Content-type*
String
application/json
Authorization*
String
Bearer pk_partner_xxxx
Request Body
Name
Type
Description
signature*
String
sha512-req-body-signed-with-sk_partner_xxxxx
partner_code*
String
the partner code used on partner onboarding
Example Request- Code
const fetch = require('node-fetch');
fetch("https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/GenKeysForPartner", {
"method": "POST",
"headers": {
"Content-Type": "application/json",
"Authorization": "Bearer pk_partner_xxxx",
},
"body": {
"email": "[email protected]",
"partner_code":"",
"signature": "sha512-req-body-signed-with-sk_partner_xxxxx"
}
})
.then(response => console.log(response))
.catch(err => console.error(err));
Last updated
Was this helpful?