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