Nhảy tới nội dung

Sửa sản phẩm

Cập nhật thông tin một sản phẩm

Sửa sản phẩm theo Id

HTTP Request

[PUT] /api/v6/products/{id}

Query Parameters

ParameterTypeNullableRequireDescription
product_namestringTên sản phẩm
product_codestringMã sản phẩm
product_vatnumericVAT sản phẩm
manufacturer_idintegeryesNhà sản xuất
short_descriptionstringMô tả ngắn
descriptionstringMô tả
is_affiliateintegerLà sản phẩm liên kết
category_idintegeryesDanh mục sản phẩm
origin_idintegeryesNguồn gốc
unit_idintegeryesĐơn vị tính
cover_pricenumericGiá bán lẻ
discountnumericChiết khấu sản phẩm
price_wholesalenumericGiá bán buôn
discount_wholesalenumericChiết khấu bán buôn
price_average_innumericGiá mua
discount_innumericChiết khấu giá mua
price_onlinenumericGiá bán online
discount_onlinenumericChiết khấu bán online
saleoff_pricenumericChiết khấu online
servicesboolLà sản phẩm dịch vụ
barcodestringMã Barcode
barcode_imagestringẢnh Barcode
attributesarrayThuộc tính
attributes.*.attribute_idintegeryesĐịnh danh thuộc tính
attributes.*.attribute_namestringTên thuộc tính
attributes.*.attribute_contentstringNội dung thuộc tính
custom_fieldsarrayTrường tùy biến
removed_attachment_idsinteger[]Sinh nhật liên hệ chính
removed_image_idsinteger[]Sinh nhật liên hệ chính

custom_fields có thể có thể lấy ở API danh sách custom fields

Example

HTTP Request

PUT api/v6/products/4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
{
"product_name": "TEST ACCOUNT API"
}

Status

200 OK

Response

{
"message": "Sửa thành công",
"id": 4
}

Sửa sản phẩm theo mã

HTTP Request

[PUT] /api/v6/products/{id}

Query Parameters

ParameterTypeNullableRequireDescription
product_namestringTên sản phẩm
product_codestringMã sản phẩm
product_vatnumericVAT sản phẩm
manufacturer_idintegeryesNhà sản xuất
short_descriptionstringMô tả ngắn
descriptionstringMô tả
is_affiliateintegerLà sản phẩm liên kết
category_idintegeryesDanh mục sản phẩm
origin_idintegeryesNguồn gốc
unit_idintegeryesĐơn vị tính
cover_pricenumericGiá bán lẻ
discountnumericChiết khấu sản phẩm
price_wholesalenumericGiá bán buôn
discount_wholesalenumericChiết khấu bán buôn
price_average_innumericGiá mua
discount_innumericChiết khấu giá mua
price_onlinenumericGiá bán online
discount_onlinenumericChiết khấu bán online
saleoff_pricenumericChiết khấu online
servicesboolLà sản phẩm dịch vụ
barcodestringMã Barcode
barcode_imagestringẢnh Barcode
attributesarrayThuộc tính
attributes.*.attribute_idintegeryesĐịnh danh thuộc tính
attributes.*.attribute_namestringTên thuộc tính
attributes.*.attribute_contentstringNội dung thuộc tính
custom_fieldsarrayTrường tùy biến
removed_attachment_idsinteger[]Sinh nhật liên hệ chính
removed_image_idsinteger[]Sinh nhật liên hệ chính

custom_fields có thể có thể lấy ở API danh sách custom fields

Example

HTTP Request

PUT api/v6/products HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
{
"product_code": "PRODUCT_CODE",
"product_name": "TEST ACCOUNT API"
}

Status

200 OK

Response

{
"message": "Sửa thành công",
"id": 4
}