POST
/
api
/
v1
/
wallets
/
verify-withdrawal
Confirm withdrawal or payout
curl --request POST \
  --url https://secureapi.dyrectpay.com/api/v1/wallets/verify-withdrawal \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-signature: <api-key>' \
  --header 'x-timestamp: <api-key>' \
  --data '
{
  "transactionId": "transaction_id",
  "password": "CUSTOMER_AUTHORIZATION_VALUE"
}
'
{
  "status": "success",
  "message": "Success",
  "data": {
    "transactionId": "transaction_id",
    "status": "processing"
  }
}

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
transactionId
string
required
Example:

"transaction_id"

password
string
required
Example:

"CUSTOMER_AUTHORIZATION_VALUE"

Response

Successful response.

status
string
Example:

"success"

message
string
Example:

"success"

data
any | null

Endpoint-specific response payload.