Deposit Result
By using Penta Pay Deposit Interface by the members, you can receive a transaction info when deposit is approved or denied on our side.
Response
After a deposit record is APPROVED or DENIED, an information data (JSON) will be sent to your endpoint.
# The Hashing
Hashing mechanism uses transaction_id,status from body params in the request + your unique token. Merges the values all together and creates a unique hash string as shown below:

Parameters of request json:
hash
sha256(transaction_id.status.token)
string
note
any note belonging to the transaction
string
amount
amount of request submitted
decimal
status
approval or denial code 1 => APPROVED, 2 => DENIED
int
currency
TRY
string
transaction_id
The transaction id record of us
int
member_id
member id value from redirect url
string
Last updated