Product API - Vorapod/sale-order-api GitHub Wiki
POST: /api/v1/products - สำหรับเพิ่มข้อมูลสินค้า
คำอธิบาย: สำหรับเพิ่มข้อมูลสินค้า
/api/v1/products
URL: POST
METHOD: Request
Header
{
"Content-Type": "application/json"
}
Body
{
"name": "ชานม",
"price": 50.00,
"status": 1
}
Response
Header
{
"Content-Type": "application/json"
}
Body Success
{
"status": "success",
"data": {
"product" : { "id": 1, "name": "ชานม", "price": "50.00", "status": 1 }
}
}
Body Fail
{
"status": "fail",
"data": "ชานม มีอยู่ในระบบแล้ว."
}