Create an Invoice
Creates an invoice/bill for a user to pay with crypto
POST Request to {Endpoint}/createInvoice
Header Parameters
Header Parameter
Type
JSON Body Parameters
Parameter
Type
Details
JSON Body Example
{
"client": {
"name": "First Name",
"email": "[email protected]",
"phone": "+11234567890",
"referenceID": "abc123-123-abc"
},
"amount": 23.1,
"description": "This is an optional payment description to be displayed on the invoice. Max of 250 chars",
"partialPayments": true,
"btcOnly": true
}
Successful Response (Status 200)
Client's can make a payment by accessing the paymentURL

Last updated