EditEdit product category### HTTP Request[PUT] /api/v6/products/categories/{id}
### Query Parameters| Parameter | Type | Nullable | Require | Description ||:--------------|:-------:|:--------:|:-------:|:-------------------------------------------|| category_name | string | | | Product category name || category_code | string | | | Category code || description | string | | | Description || is_default | integer | | | Default category (1/0) || parent_id | integer | | | Parent category identifier (default 1) |### ExampleHTTP RequesthttpPUT api/v6/products/categories/4 HTTP/1.1Host: example.getflycrm.comContent-Type: application/json{ "product_name": "TEST ACCOUNT API"}
Status200 OK
Responsejson{ "message": "Successfully updated", "id": 4}