post https://{accountName}.{environment}.com.br/api/catalog/pvt/product//specification
Associates a previously defined Specification to a Product
Request has the following properties:
Attribute | Type | Description |
---|---|---|
FieldId | integer | Field ID |
FieldValueId | integer | Fied Value ID |
Text | string | Value inside the Field ID |
Request body example:
{
"FieldId": 19,
"FieldValueId": 1,
"Text": "test"
}
Response has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | Unique ID of the Specifications association with a Product |
FieldId | integer | Field ID |
FieldValueId | integer | Fied Value ID |
Text | string | Value inside the Field ID |
Response body example:
{
"Id": 41,
"FieldId": 19,
"FieldValueId": 1,
"Text": "test"
}