GET /products
[
{
"id": 1,
"name": "Rise",
"tagline": "Daily Nootropic For Memory",
"image": "https://url1",
"featured": false
}
]
Status Code | Description |
---|---|
200 | OK |
500 | INTERNAL SERVER ERROR |
GET /cart
[
{
"product_id": 1,
"quantity": 2
}
]
Status Code | Description |
---|---|
200 | OK |
500 | INTERNAL SERVER ERROR |
POST /cart/add
Parameter | Type | Description |
---|---|---|
product_id |
integer |
Required. Product ID |
quantity |
integer |
Required. Amount to add |
[
{
"product_id": 1,
"quantity": 2
}
]
Status Code | Description |
---|---|
200 | OK |
404 | NOT FOUND |
500 | INTERNAL SERVER ERROR |
POST /cart/delete
Parameter | Type | Description |
---|---|---|
product_id |
integer |
Required. Product ID |
[
{
"product_id": 1,
"quantity": 2
}
]
Status Code | Description |
---|---|
200 | OK |
404 | NOT FOUND |
500 | INTERNAL SERVER ERROR |
POST /cart/update
Parameter | Type | Description |
---|---|---|
product_id |
integer |
Required. Product ID |
quantity |
integer |
Required. New amount |
[
{
"product_id": 1,
"quantity": 2
}
]
Status Code | Description |
---|---|
200 | OK |
422 | UNPROCESSABLE ENTITY |
404 | NOT FOUND |
500 | INTERNAL SERVER ERROR |