View products

Free API route that allows viewing the available products on the Replase platform.

Header

This route doesn't require header authentication

 

								
                          
GET
business.replase.com/platform/data/v1/products
Body Request
Name Type Description
page number Page number for product listing (pagination)
country string Filter products by the 'country' attribute
offset number Number of products to skip from start
Response
			               
						   
{ "products": [
    {
        "id": 148,
        "name": "Prodotto di prova 1",
        "price": "10",
        "country": ""
    }
], "totalProducts": 1,
"currentPage": 1,
"totalPages": 1,
"perPage": 10
}