Get Products

This endpoint is used to get all product details for invoice plugin

Method

GET https://api.ninjapay.me/webextension/api/v1/fiat/invoice/products

Response

{
    "status": true,
    "data": [
        {
            "id": 10,
            "name": "Orange Gift Box",
            "price": "599.50",
            "description": "",
            "logo": "",
            "product_created_at": "2024-08-07T11:53:03.000Z",
            "currency": "INR"
        }
    ],
    "message": "Product list fetched successfully"
}

Code Example

Last updated