Payment form with fixed amount

Amount of this payment cannot be changed by Client (but Merchant could provide options). Payment is considered paid when received amount is more of equal to payment amount, otherwise payment will be unsuccessful and will be awaiting for Merchant's confirmation.

Content Type: x-www-form-urluncoded, form-data

Request type: POST

Endpoint:

https://app.0xprocessing.com/Payment

Parameters:

Example request:


        <form action="https://app.0xprocessing.com/Payment" method="post">
                <input type="hidden" name="test" value="false" />
                <input type="hidden" name="email" value="test@test.com" />
                <input type="hidden" name="name" value="name" />
                <input type="hidden" name="lastname" value="lastname" />
                <input type="hidden" name="amount" value="115" />
                <input type="hidden" name="currency" value="BTC" />
                <input type="hidden" name="MerchantId" value="Asv0232SSd" />
                <input type="hidden" name="ClientId" value="1000" />
                <input type="hidden" name="BillingId" value="13304" />
                <button type="submit">Send</button>
        </form>
                

Reply- in response to the above mandatory parameters, sent to https://app.0xprocessing.com/Payment, a payment form will be generated and shown to the payer to make the payment.

An example of the response when ReturnUrl = true:

   {
    "redirectUrl": "https://app.0xprocessing.com/Payment/Details/765ecbfa-13f5-4f49-83e9-ee468085c473",
    "id": 264239
   }                

The deposits report can be implemented by means of webhooks or by checking of payment status.

Last updated