Attach Payout Account

This endpoint helps help to specify settlement bank account for payout

POST https://api.oneappgo.com/v1/business/addpayoutbank

Headers

Name
Type
Description

authorization*

String

SECRET_KEY

Request Body

Name
Type
Description

trackingid

string

Customer tracking id from the create account endpoint response

bankcode

string

Payout bank code

bankname

string

Payout bank name

accountno

string

Payout account number

Take a look at how you might do this:

curl --location 'https://api.oneappgo.com/v1/business/addpayoutbank' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRE_KEY' \
--data-raw '{
    "trackingid":"00104K0000000",
    "bankname":"GT Bank",
    "bankcode":  "00013",
    "accountno": "0212222223"
}'

Sample Response

{
    "status":true,
    "message":"Payout Account Successfully Added",
    "trackingid":"00104K0000000"
}

Last updated

Was this helpful?