POST
/
api
/
v1
/
wallets
/
preview-withdraw-local-transfer
Preview NGN payout
curl --request POST \
  --url https://secureapi.dyrectpay.com/api/v1/wallets/preview-withdraw-local-transfer \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-signature: <api-key>' \
  --header 'x-timestamp: <api-key>' \
  --data '
{
  "amount": 10000,
  "coin": "ngn",
  "accountNumber": "0123456789",
  "bankCode": "044",
  "remark": "Customer payout"
}
'
{
  "status": "success",
  "message": "Success",
  "data": {
    "transactionId": "transaction_id",
    "amount": 10000,
    "coin": "ngn",
    "fee": 0,
    "status": "pending"
  }
}

Authorizations

x-api-key
string
header
required

API key issued to your integration.

x-timestamp
string
header
required

Request timestamp used for signature verification.

x-signature
string
header
required

Request signature generated by your backend.

Body

application/json
amount
number
required
Example:

10000

coin
string
required
Example:

"ngn"

accountNumber
string
Example:

"0123456789"

bankCode
string
Example:

"044"

remark
string
Example:

"Customer payout"

Response

Successful response.

status
string
Example:

"success"

message
string
Example:

"success"

data
any | null

Endpoint-specific response payload.