Purchases

https://storepi.vercel.app/api/v1/purchases/:id

Sample Response:

"data": [ { "id": 77, "paid": true, "created_at": "2023-08-12T03:24:43.213638+00:00", "total": 249.94, "user_id": "b810e6fc-bb73-485f-bd42-1021c8d1b47a", "purchase_products": [ { "product_id": 1, "quantity": 1, "product_data": { "id": 1, "sku": 1, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "HP 24 in. LED Monitor IPS Micro-edge HDMI VGA 60Hz 5ms - 24m" } }, { "product_id": 2, "quantity": 1, "product_data": { "id": 2, "sku": 2, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "Susulv-MCL Men Shirt Men's Large Size Long Sleeve Lapel Zipper Shirt" } } ] }, ... ]

NOTE: You must be logged in as the owner of the purchase for this call to succeed.

https://storepi.vercel.app/api/v1/purchases

Sample Response:

"data": [ { "id": 77, "paid": true, "created_at": "2023-08-12T03:24:43.213638+00:00", "total": 249.94, "user_id": "b810e6fc-bb73-485f-bd42-1021c8d1b47a", "purchase_products": [ { "product_id": 1, "quantity": 1, "product_data": { "id": 1, "sku": 1, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "HP 24 in. LED Monitor IPS Micro-edge HDMI VGA 60Hz 5ms - 24m" } }, { "product_id": 2, "quantity": 1, "product_data": { "id": 2, "sku": 2, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "Susulv-MCL Men Shirt Men's Large Size Long Sleeve Lapel Zipper Shirt" } } ] }, ... ], "count": 5

https://storepi.vercel.app/api/v1/purchases

Sample Request Body:

"products": [ { "product_id": 1, // required "quantity": 2 // optional, defaults to 1 }, ]

Sample Response:

"data": [ { "id": 81, "paid": true, "created_at": "2023-08-12T03:31:03.980895+00:00", "total": 249.94, "user_id": "b810e6fc-bb73-485f-bd42-1021c8d1b47a", "purchase_products": [ { "product_id": 1, "quantity": 1, "product_data": { "id": 1, "sku": 1, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "HP 24 in. LED Monitor IPS Micro-edge HDMI VGA 60Hz 5ms - 24m" } }, { "product_id": 2, "quantity": 1, "product_data": { "id": 2, "sku": 2, "category": { "name": "..." }, "images": [...], "brand": { "name": "..." }, "name": "Susulv-MCL Men Shirt Men's Large Size Long Sleeve Lapel Zipper Shirt" } } ] } ]