Add NewAdd a new product### HTTP Request[POST] /api/v6/products### Body Parameters| Parameter | Type | Nullable | Require | Description |:--------------------------------------------|:---------:|:-------:|:--------:|:-------:|:---------------------------|| product_name | string | | | Product name || product_code | string | | | Product code || product_vat | numeric | | | Product VAT || manufacturer_id | integer | yes | | Manufacturer || short_description | string | | | Short description || description | string | | | Description || is_affiliate | integer | | | Is affiliate product || category_id | integer | yes | | Product category || origin_id | integer | yes | | Origin || unit_id | integer | yes | | Unit of measurement || cover_price | numeric | | | Retail price || discount | numeric | | | Product discount || price_wholesale | numeric | | | Wholesale price || discount_wholesale | numeric | | | Wholesale discount || price_average_in | numeric | | | Purchase price || discount_in | numeric | | | Purchase discount || price_online | numeric | | | Online selling price || discount_online | numeric | | | Online selling discount || saleoff_price | numeric | | | Online discount || services | bool | | | Is service product || barcode | string | | | Barcode || attributes | array | | | Attributes || attributes..attribute_id | integer | yes | | Attribute identifier || attributes..attribute_name | string | | | Attribute name || attributes..attribute_content | string | | | Attribute content || variant_attribute_values | array | | | Variant value || variant_attribute_values..value_id | integer | yes | | Variant value identifier || variant_attribute_values..additional_price | integer | yes | | Variant additional price || custom_fields | array | | | Custom fields || removed_attachment_ids | integer[] | | | Main contact birthday || removed_image_ids | integer[] | | | Main contact birthday |*custom_fields can be retrieved from API custom fields list### ExampleHTTP RequesthttpPOST api/v6/products HTTP/1.1Host: example.getflycrm.comContent-Type: application/json{ "product_name": "TEST PRODUCT API", "custom_fields": { "field_1": 111 // field_1 is the field_name in the custom field list }}Status200 OKResponsejson{ "message": "Successfully added", "id": 4}