Outbound Transfer Pre-requisite
Setup outbound transfer account and transfer PIN before your proceed
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}"
}'
Last updated
