Create Invoice
Create invoice
Invoice can be created in two methods manual or using API this instruction is show how to create API using APIs
Make your first request
To make your first request, send an authenticated request to the create invoice endpoint. This will create an invoice, which is nice.
Creating invoice
Create Invoice.
POST
https://api.nebulox.io/api/invoice/create
This method creates an invoice with the specified parameters
Request Body
apikey*
string
The genrated API key
price*
number
the price amount in fiat
orderId*
string
Merchant's order unique identifier. It will be used to track order.
baseCurrency
string
your base currency
coinSymbol
string
Your order payment coin
networkName
string
Your order payment network
amount*
number
Order's amount.
baseCurrency
must be in [EUR, USD].coinSymbol
must be in [BTC,LTC,USDT,TRX,DOGE].networkName
must be in [Bitcoin,Litecoin,Tron,Dogecoin].The
price
field should remain blank if you enter a value for theamount
.The
amount
field should remain blank if you enter a value for thePrice
.If you enter a value for the
amount
field you must fill thecoinSymbol
too.
Last updated