Skip to main content
PUT
/
trades
/
wallets
/
{id}
/
bank
Update Bank For Existing Wallet Address
curl --request PUT \
  --url https://api.breet.io/v1/trades/wallets/{id}/bank \
  --header 'Content-Type: application/json' \
  --header 'X-Breet-Env: <api-key>' \
  --header 'x-app-id: <api-key>' \
  --header 'x-app-secret: <api-key>' \
  --data '
{
  "id": "25",
  "narration": "Breet payout account",
  "accountNumber": "802920XXXX"
}
'
{
  "message": "bank added to wallet successfully",
  "success": true,
  "data": {},
  "meta": {},
  "summary": {},
  "stats": {}
}

Authorizations

x-app-id
string
header
required

Your application ID from the Breet dashboard

x-app-secret
string
header
required

Your application secret from the Breet dashboard

X-Breet-Env
string
header
required

Environment selector: development or production

Path Parameters

id
string
required

ID of the wallet to update.

Body

application/json
id
string

Bank identifier from the GET /payments/banks endpoint.

narration
string

A short note included with bank settlement payouts. Maximum 32 characters.

accountNumber
string

Bank account number for settlement payouts.

Response

200 - application/json

Bank details updated successfully