You can create one or more outbound payout account number for your NIP or Wallet transfer purpose
Sandbox: https://devbox.paydestal.com/payout
Prod: https://api.paydestal.com/payout
curl --location 'https://devbox.paydestal.com/payout/api/v1/create-merchant-pin' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your client secret}' \
--data '{
"pin": "{pin}",
"pinConfirmation": "{pin}"
}'
curl --location --request PUT 'https://devbox.paydestal.com/payout/api/v1/change-merchant-pin' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your client secret}' \
--data '{
"oldPin": "{oldPin}",
"newPin": "{newPin}",
"newPinConfirmation": "{newPin}"
}'
curl --location 'https://devbox.paydestal.com/payout/api/v1/create-payout-wallet' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your client secret key}' \
--data '{
"customerName": "Sample Plus",
"bankName": "Palmpay"
}'
bankName Options
SafeHavenMfb, PremiumTrust, Bank78, Fidelity, Palmpay
curl --location 'https://devbox.paydestal.com/payout/api/v1/merchant-payout-accounts?page=1&pageSize=20' \
--header 'Authorization: Bearer {your client secret}'