Skip to main content
PATCH
/
settlement
/
fiat
/
{id}
Update fiat settlement account
curl --request PATCH \
  --url https://api.orafi.app/v1/settlement/fiat/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "bankName": "Access Bank",
  "bankCode": "044",
  "accountNumber": "1234567890"
}
'
{
  "success": true,
  "message": "Account updated successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.orafi.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for merchant authentication required for most endpoints

Path Parameters

id
string
required

Settlement account ID

Body

application/json
bankName
string

Bank name

Example:

"Access Bank"

bankCode
string

Bank code

Example:

"044"

accountNumber
string

Bank account number

Example:

"1234567890"

Response

Fiat settlement account updated successfully

success
boolean
Example:

true

message
string
Example:

"Account updated successfully"