Add Product
This endpoint is used to add a product details for invoice plugin
Method
POST https://api.ninjapay.me/webextension/api/v1/fiat/invoice/productParameters
name :
(string, required)- The name of the product or itemprice :
(number, required)- The price of the product or itemdescription:
(string)- A detailed description of the product or itemcurrency:
(string)- The currency in which the price is denominated
Request Body
Body (application/json)
{
"name": "Gift Box",
"price": 499.5,
"description": "A beautifully curated gift box with assorted items perfect for any occasion.",
"currency": "INR"
}Response
Code Example
Last updated