Authorization: ********************curl --location --request GET 'https://test.your-api-server.com/api/scale/product' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{}'{
"msg": "Lista de Productos",
"products": [
{
"id": 1,
"productName": "Producto 1",
"enabled": null,
"createdAt": "2022-12-02T13:22:21.607Z",
"updatedAt": "2022-12-02T13:22:21.607Z"
},
{
"id": 2,
"productName": "Producto 2",
"enabled": null,
"createdAt": "2022-12-02T13:22:25.419Z",
"updatedAt": "2022-12-02T13:24:42.819Z"
},
{
"id": 3,
"productName": "Producto 3",
"enabled": true,
"createdAt": "2022-12-02T13:25:17.516Z",
"updatedAt": "2022-12-02T13:25:17.516Z"
}
]
}