Remove Product
This endpoint is used to remove a product details for invoice plugin
Method
DELETE https://api.ninjapay.me/webextension/api/v1/fiat/invoice/product/{id}
Request Parameter
id : (integer, required)
- Product ID
Response
{
"status": true,
"data": {},
"message": "Product removed successfully"
}
Code Example
const options = {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'API_KEY' //Invoice key required
}
};
fetch('https://api.ninjapay.me/webextension/api/v1/fiat/invoice/product/{id}', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Last updated