
Crypto Currency
The platform provides a powerful API and unique tools for receiving and sending payments using classical methods and through the processing of popular cryptocurrencies, such as Bitcoin.
It has rich functionality for working with payments, currency exchange and payments. The platform is integrated with popular payment methods and develops cooperation with payment and financial institutions in different countries.
By connecting platform, you can accept card payments for your goods and services from more than 150 countries.
The site hosted a server page. By clicking on the payment button, a request is received. After that, the server gives an answer with a link to the payment page. Next, the company redirects the person to the payment page.
Payment is made in the following format:
buy Crypto for the credit card and crypto send to wallet owner, real money is debited of severing account
Create Invoices
In order to create invoice on the server you must make a POST request to
POST https://app.plasmapay.com/business/api/v1/public/invoices
with the apiKey as query parameter or Bearer <API_KEY> as authorization header.
Parameter |
Meaning |
currencyCode={INVOICE_CURRENCY} |
string (required) Four-letter Plasma currency code |
amount={INVOICE_AMOUNT} |
number (required) Invoice amount |
successUri={SUCCESS_URI} |
string (optional) Success URI for return user to your success page |
failureUri={FAILURE_URI} |
string (optional) Failure URI for return user to your failure page |
merchantId={INVOICE_MERCHANTID} |
string (required) External ID / ID of your order in your DataBase |
description={INVOICE_DESCRIPTION} |
string (required) Invoice description |
accountId={INVOICE_ACCOUNTID} |
string (required) External user ID / ID of your user in your DataBase |
metadata={INVOICE_METADATA} |
string (optional) Key value storage |
email={EMAIL} |
string (optional) Email of a user |
phone={PHONE} |
string (optional) The phone number to lookup in E.164 format, which consists of a + followed by the country code and subscriber number - 12 to 24 characters |
After receive the success response you can redirect user on https://app.plasmapay.com/business/checkout/{INVOICE_ID} page to pay the invoice.

