Skip to main content
PUT
/
payout-subaccounts
/
{account_reference}
Update a Payout Subaccount
curl --request PUT \
  --url https://api.flutterwave.com/v3/payout-subaccounts/{account_reference} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_name": "Another Example",
  "email": "developers@flutterwavego.com",
  "mobilenumber": "234000001708294",
  "country": "US"
}
'
{
  "status": "success",
  "message": "Payout subaccount updated",
  "data": {
    "id": 699,
    "account_reference": "PSAFF2118D1A33844332",
    "account_name": "Another Example",
    "barter_id": "234000001708294",
    "email": "developers@flutterwavego.com",
    "mobilenumber": "234000001708294",
    "country": "US",
    "nuban": "6222126177",
    "bank_name": "Sterling Bank",
    "bank_code": "232",
    "status": "ACTIVE",
    "created_at": "2022-03-04T19:57:24.000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_reference
string
required
Example:

"PSAFF2118D1A33844332"

Body

application/json
account_name
string
required
email
string
required
mobilenumber
string
required
country
string
required

Response

OK

status
string
required
message
string
required
data
Data55 · object
required
Example:
{
"id": 4190,
"account_reference": "PSA7472870CFA3073543",
"account_name": "Example User",
"barter_id": "234000002466747",
"email": "user@gmail.com",
"mobilenumber": "09010000000",
"country": "US",
"nuban": "6222125542",
"bank_name": "Sterling Bank",
"bank_code": "232",
"status": "ACTIVE",
"created_at": "2024-03-24T09:38:03.000Z"
}