Junipay API
  1. Verify Recipient
Junipay API
  • JuniPay API Documentation
  • Authentication
    • Get Token for Payment Form (Client ID + Secret)
      GET
  • Collections
    • Initiate Collection Payment
      POST
  • Disbursements
    • Transfer Funds
      POST
  • Remittance
    • Send Remittance
      POST
  • Transaction Status
    • Check Transaction Status
      GET
  • Verify Recipient
    • Verify Recipient
      POST
  • Webhooks
    • Webhook/Callback
      POST
  1. Verify Recipient

Verify Recipient

POST
/resolve
Verify the details of a recipient account before creating or sending funds.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/resolve' \
--header 'Authorization: Bearer {{token}}' \
--header 'clientid: {{clientId}}' \
--header 'Content-Type: application/json' \
--data-raw '{
  "accountNo": "0240000000",
  "provider": "mtn"
}'
Response Response Example
200 - Success
{
  "status": "success",
  "accountName": "John Doe",
  "accountNo": "0240000000",
  "provider": "mtn"
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠404Error
Modified at 2025-08-21 16:06:37
Previous
Check Transaction Status
Next
Webhook/Callback
Built with