Edit Customer Order
Developing
PUT
/store/order/{id}/detail/customer
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/store/order/INV57123/detail/customer' \
--header 'Content-Type: application/json' \
--data-raw '{
"customer_name": "PUTRI",
"customer_phone": "081765123451",
"customer_email": "nurhadi@gmail.com",
"addr_id": 76518,
"city": "Sidoarjo",
"district": "Buduran",
"customer_address": "Desa Banjarkemantren"
}'
Response Response Example
200 - Success
{
"message": "Customer has been successfully saved."
}
Request
Path Params
id
string
required
Example:
INV57123
Body Params application/json
Responses
Modified at 2025-06-19 09:14:01