Create Papara Deposit
Creates Papara Deposit and Returns paymentUrl
POST
https://api.paypot.io/V1/Deposit/Papara/Create
This endpoint allows you to create a new Papara deposit request.
Headers
Accept
String
application/json
api-key*
String
PayPot API Key
Request Body
memberId*
String
username
or userid
on your side
transactionId*
String
Transaction ID created on your side (this value is sent back to you by a callback request to callback_url
when transaction is completed)
amount*
Integer
Amount in INT
format with no decimals
checksum*
String
Create a string imploding values with pipe character and hash it with sha256
algorithm.
PHP Example:
hash("sha256", "apiKey|secretKey|transactionId")
memberFullName*
String
Full Name
of the user on your side
callback_url*
String
Transaction result will be sent to this endpoint.
redirect_back_success_url
String
Player will be redirected to this URL after payment process is completed successfully
.
Example: https://abc.com/success-page
redirect_back_error_url
String
Player will be redirected to this URL after payment process is completed with error
.
Example:
https://abc.com/error-page
Response Parameters
paymentUrl: This value will be returned if request succeeds.
User can be redirected to this url
or it can be displayed in an iframe.
Last updated