Create Payment
Creating a payment requires a simple request, containing just API keys as authorisation and the payment parameters.
Create a new payment
POST
https://api.piecard.app/payment
Request Body
amount*
number
The amount of Pi being requested. This includes the transaction fee.
memo*
string
Something to describe the payment to the user.
successURL*
string
The redirect URL for a successful payment.
cancelURL*
string
The redirect URL for a failed payment.
metadata
object
Any set object-key pairs for the developer's use. This will be included in the webhook.
sandbox
boolean
Set to true for testing you payment integration. Default is false.
Usage with NPM Package
From the POST /payment endpoint, you will receive a payment ID.
To initiate the payment, you must redirect the user to 'https://piecard.app/pay/YOUR_PAYMENT_ID'
Example using Axios
Last updated
Was this helpful?