ATM Permata Cash Out
Permata CashOut is one of the Faspay SendMe (disbursement) features that serve to conduct cash withdrawal transactions at Permata ATMs. The increasing number of money withdrawal options through Permata ATMs, could increase profit opportunities and expand market segmentation.
Flow Permata CashOut
Flow CashOut Reservation
API Services
Transfer
This service serves to create transactions from partner to Faspay. This service is used to process funds transfer from a partner account to a beneficiary.
Transfer Request
Relative URL : /account/API/transfer
Method : HTTP POST
The parameters that must be provided by the partner system to be accessed by the Faspay system are as follows:
Transfer Response
Decrypting Cashout Code
At transfer response, cashout_code
that has been received by partner is in chipertext format, so partner need to decrypting the code using openssl_public_decrypt
method to change the cashout_code
into plain text. To decrypting the cashout_code
into 10 digit plain text it can be done by the steps as follows:
Partner receive public key from Faspay
Decode the
cashout_code
usingbase64_decode
methodDecrypting the
cashout_code
usingopenssl_public_decrypt
method and public key that has been partner received beforePartner get 10 digit plain text of
cashout_code
Sample Code Decrypting Cashout Code
Last updated