Intrapay P2P Payment Automation
  • Introduction to P2P Payment Automation
  • Getting Started for Partner
    • Partner Onboarding Endpoints
    • Regenerate Partners Pub/Priv Keys
  • Getting Started for Merchant
  • Integration
    • Payment Automation- Order Management
      • Mobile Money Providers
      • Digital Signature
      • Create Order - Using Payment Page
      • Create Order-Without Payment Pages or in Nigeria
      • Fetch Order
    • Order Management (Async)
      • Mobile Money Providers
      • Digital Signature
      • Create Order - Using Payment Pages
      • Create Order-Without Payment Pages or in Nigeria
      • fetch order
    • Notification- Callback URL
      • Partner Merchant Payment Notification CallBackURL
  • Payout & Account Verification
    • Account Verification
    • Payout
    • Payout Status
    • Banks & Bank Codes
Powered by GitBook
On this page

Was this helpful?

  1. Payout & Account Verification

Account Verification

This endpoint identifies the owner of the account.

POST https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/AccountVerification/

It returns the name of the owner of the bank account or the mobile number. This avoids sending money to the wrong account.

Headers

Name
Type
Description

Authorization*

String

Bearer pk_partner_xxx

Content-Type*

String

application/json

Request Body

Name
Type
Description

account_number*

String

This is the bank account number or phone number the payout will be made to

account_code*

String

this is the code (eg. 051 fidelity bank or 'Momo' for Mobile money)

currency*

String

This is the currency of the fiat wallet the withdrawal would be made from e.g GHS, NGN

signature*

String

Signed Hash of payload. Sign on the digital signature endpoint with just your partner secret

{
success:true,
message:string,
data:{
    account_name:''}
}
PreviousPayout & Account VerificationNextPayout

Last updated 1 year ago

Was this helpful?