Fetch Products
A list of your products
We are in the process of enabling you to add a product via the API.
GET
{{base_url}}/products
Bearer {{your_secret_key}}
{
"success": true,
"message": "Data retrieved successfully",
"data": [
{
"id": "2acac77f-b7c5-408b-9b53-6984b17a8475",
"name": "Chilli Fries",
"description": null,
"price": 60000,
"createAt": "2023-09-26T21:57:24.000000Z",
"updatedAt": "2023-09-26T21:57:24.000000Z"
},
{
"id": "6ad5fe1a-1633-4eb9-9c72-d9ee2e0d9dfe",
"name": "Burger",
"description": "Burger without peanuts",
"price": 30000,
"createAt": "2023-05-26T19:04:17.000000Z",
"updatedAt": "2023-05-26T19:04:17.000000Z"
}
]
}