Rootshive
Create an AccountOnboardingStartUpsProduct DocumentationGo back Home
  • Welcome!
  • Quick Start
  • Reference
    • Authentication
      • Check Source
      • Generate Access Token
    • Collections
      • Wallet Balance
      • Create Payme
      • Generate Nuban
      • Verify Collections
    • Transfers
      • Initiating Single Transfers
      • Initiate Transfer (Single) API
      • Single Transfer Status
      • Reconcile Transfer
    • Events
      • Overview
Powered by GitBook
On this page

Was this helpful?

  1. Reference
  2. Transfers

Initiate Transfer (Single) API

The Transfers API allows you automate sending money to your customers.

PreviousInitiating Single TransfersNextSingle Transfer Status

Last updated 9 months ago

Was this helpful?

Good to know: Authorize this API call by , include the Token in the request header.

Initiate Transfers

send money to your customers

generating a token here
  • Initiate Transfers
  • POSTSingle Transfer

Single Transfer

post
Body
amountnumberOptionalExample: 30
referencestringOptionalExample: RHTY234591
narrationstringOptionalExample: Rootshive Withdrawal
destinationBankCodestringOptionalExample: 058
destinationAccountNumberstringOptionalExample: 0449368915
UserTeirAstringOptional
UserTeirBstringOptional
Responses
200
Successful Response
application/json
post
POST /disbursements/single HTTP/1.1
Host: {{baseUrl}}
Content-Type: application/json
Accept: */*
Content-Length: 171

{
  "amount": 30,
  "reference": "RHTY234591",
  "narration": "Rootshive Withdrawal",
  "destinationBankCode": "058",
  "destinationAccountNumber": "0449368915",
  "UserTeirA": "",
  "UserTeirB": ""
}
200

Successful Response

{
  "status": "200",
  "service": "disbursement",
  "logged": true,
  "requestSuccessful": true,
  "responseMessage": "success",
  "data": {
    "message": "Funds Processed to",
    "amount": 30,
    "reference": "RHTY234591",
    "status": "SUCCESS",
    "dateCreated": "2024-03-13T00:04:20.264+0000",
    "totalFee": "30",
    "destinationAccountName": "",
    "destinationBankName": "GTBank",
    "destinationAccountNumber": "0449368915",
    "destinationBankCode": "058"
  }
}