- 1 // Publish on your site
- 2<form method="POST" action="https://www.pallapay.com/sci/form" target="_blank">
- 3 <input type="hidden" name="merchant" value="EE547896">
- 4 <input type="hidden" name="order" value="134543">
- 5 <input type="hidden" name="item_name" value="Testing payment">
- 6 <input type="hidden" name="item_number" value="123">
- 7 <input type="hidden" name="amount" value="112">
- 8 <input type="hidden" name="quantity" value="1">
- 9 <input type="hidden" name="currency" value="USD">
- 10 <input type="hidden" name="first_name" value="David">
- 11 <input type="hidden" name="last_name" value="Joi">
- 12 <input type="hidden" name="email" value="[email protected]">
- 13 <input type="hidden" name="phone" value="12323456789">
- 14 <input type="hidden" name="address" value="213 Browning Lane">
- 15 <input type="hidden" name="city" value="Mount Upton">
- 16 <input type="hidden" name="state" value="New York">
- 17 <input type="hidden" name="country" value="United States"">
- 18 <input type="hidden" name="postalcode" value="13809">
- 19 <input type="hidden" name="custom" value="comment">
- 20 <button type="submit">Pay now!</button>
- 21<form/>
E-commerce Plugins
Integrate Pallapay with popular e-commerce platforms via our payment plugins.
Readymade plugins for popular shopping carts platforms
List of Currency Accepted
Here is list of currency code, in your form pass the code in a currency parameter
Name
Code
UAE Dirham
AED
US Dollar
USD
Name
Code
Bitcoin
BTC
Pallapay
PALLA
USDT
USDT-TRC20
USDT
USDT-ERC20
Etherum
ETH
Tron
TRON
USDC
USDC-ERC20
List of Currency Accepted
Here is list of currency code, in your form pass the code in a currency parameter
Name | Code |
---|---|
UAE Dirham | AED |
US Dollar | USD |
Name | Code |
---|---|
Bitcoin | BTC |
Pallapay | PALLA |
USDT | USDT-TRC20 |
USDT | USDT-ERC20 |
Etherum | ETH |
Tron | TRON |
USDC | USDC-ERC20 |
Simple form and instant payment POST notifications

Fast start
Register your account, go through verification and start accepting payments!

IPN system
Get notifications about payments to your sites built on any CMS!

Test mode
Special test payment mode for developers without using real money!
Get payments using the HTML form or on website Pallapay
How to receive payments?
On your site - just publish the HTML form and enter payment parameters. User pay for purchase on a special page
Shops and payment - add your store to our categories and the user pay the purchase in your account
Invoicing system - Enter the cost, the recipient and the description of the invoice.

Popular deposit methods for users








and other metnods
Documentation
POST form for payment
Variable | Description | Conditions | Necessarily |
---|---|---|---|
merchant |
Merchant ID in the system Pallapay. Assigned to the merchant automatically after adding a store to your account. Your store must be moderated | Not equal to 0 | Yes |
item_name |
Product name or purpose of payment. This item is visible to the payer | Minimum number of characters 3, maximum - 100 | Yes |
item_number |
Product number or purpose of payment. | Minimum number of characters 3, maximum - 100 | Yes |
quantity |
Product quantity or purpose of payment. | Minimum number of characters 3, maximum - 100 | Yes |
amount |
The sum in any form. The sum is rounded to decimal places. The total amount including commission will be calculated automatically | Sum is more than 1 | Yes |
currency |
Currency of payment. Available currencies USD , AED , EUR , GBP ,BTC ,PALLA ,USDT-TRC20 ,USDT-ERC20 ,ETH ,TRON ,USDC-ERC20 |
Only values from the list | Yes |
first_name |
First name of payer | Minimum number of characters 1 | Yes |
last_name |
Last name of payer | Minimum number of characters 1 | Yes |
email |
email of payer should be valid format | Minimum number of characters 1 | Yes |
phone |
phone number of payer | number of characters 10 | Yes |
address |
address of payer | Minimum of characters 1 | Yes |
city |
city of payer | Minimum of characters 1 | Yes |
state |
state of payer | Minimum of characters 10 | Yes |
country |
country of payer | Minimum of characters 1 | Yes |
postalcode |
postalcode of payer | Minimum of characters 1 | Yes |
custom |
Comment to the payment. For example, the order number in your store. This item is not displayed to the buyer | Maximum - 100 | Yes |
IPN notifications
Variable | Description | Example |
---|---|---|
$POST['amount'] |
The received amount without commissions | 100.00 |
$POST['fee'] |
Fee for payment. Paid by the buyer or merchant according to the settings | 0.20 |
$POST['total'] |
Total transaction amount including commission | 100.20 |
$POST['currency'] |
Transaction currency for which payment was made | debit_base |
$POST['payer'] |
Buyer username in the system Pallapay | johndoe |
$POST['receiver'] |
Merchant username in the system Pallapay | envato |
$POST['status'] |
The status of the transaction. Always Value "Confirmed" | Confirmed |
$POST['date'] |
Transaction date | 2018-01-09 03:11:07 |
$POST['id_transfer'] |
Unique transaction number in the system Pallapay | 58954 |
$POST['merchant_name'] |
Merchant store name in the system Pallapay | Google Inc |
$POST['merchant_id'] |
Unique number of merchant in the system Pallapay | 21 |
$POST['balance'] |
Available merchant balance in transaction currency | 2100.56 |
$POST['item_name'] |
Name of paid goods | Test payment |
$POST['custom'] |
Comment on payment, formed by the merchant in the HTML form | INV 1452485 |
$POST['hash'] |
A unique signature that is used to verify the validity of a notification. A string join is created of the total amount, merchant password, date transaction and transaction ID. The string is encrypted using an algorithm MD5. | C93D3BF7A7C4AFE94B64E30C2CE39F4F |
Example of a notification handler in PHP