put https://{accountName}.{environment}.com.br/api/catalog/pvt/product/
Updates an existent Product
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
Name | string | Product Name |
DepartmentId | integer | Product Department ID |
CategoryId | integer | Product Category ID |
BrandId | integer | Product Brand ID |
LinkId | string | Text Link |
RefId | string | Product Referecial Code |
IsVisible | boolean | If the Product is visible on the store |
Description | string | Product Description |
DescriptionShort | string | Complement Name |
ReleaseDate | string | Product Release Date |
KeyWords | string | Substitutes words for the Product |
Title | string | Tag Title |
IsActive | boolean | If the Product is active or not |
TaxCode | string | Product Fiscal Code |
MetaTagDescription | string | Meta Tag Description |
SupplierId | integer | Product Supplier ID |
ShowWithoutStock | boolean | Defines if the Product will remain being shown in the store even if it’s out of stock |
AdWordsRemarketingCode | string | Code specific for AdWords Remarketing |
LomadeeCampaignCode | string | Code specific for Lomadee Campaign |
Score | integer | Value used for Product search ordenation |
Request body example:
{
"Name": "insert product test",
"DepartmentId": 1,
"CategoryId": 2,
"BrandId": 2000000,
"LinkId": "insert-product-test",
"RefId": "310117869",
"IsVisible": true,
"Description": "texto de descrição",
"DescriptionShort": "Utilize o CEP 04548-005 para frete grátis",
"ReleaseDate": "2019-01-01T00:00:00",
"KeyWords": "teste,teste2",
"Title": "product de teste",
"IsActive": true,
"TaxCode": "",
"MetaTagDescription": "tag test",
"SupplierId": 1,
"ShowWithoutStock": true,
"AdWordsRemarketingCode": null,
"LomadeeCampaignCode": null,
"Score": 1
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | Product’s unique numerical identifier |
Name | string | Product Name |
DepartmentId | integer | Product Department ID |
CategoryId | integer | Product Category ID |
BrandId | integer | Product Brand ID |
LinkId | string | Text Link |
RefId | string | Product Referecial Code |
IsVisible | boolean | If the Product is visible on the store |
Description | string | Product Description |
DescriptionShort | string | Complement Name |
ReleaseDate | string | Product Release Date |
KeyWords | string | Substitutes words for the Product |
Title | string | Tag Title |
IsActive | boolean | If the Product is active or not |
TaxCode | string | Product Fiscal Code |
MetaTagDescription | string | Meta Tag Description |
SupplierId | integer | Product Supplier ID |
ShowWithoutStock | boolean | Defines if the Product will remain being shown in the store even if it’s out of stock |
AdWordsRemarketingCode | string | Code specific for AdWords Remarketing |
LomadeeCampaignCode | string | Code specific for Lomadee Campaign |
Score | integer | Value used for Product search ordenation |
Response body example:
{
"Id": 52,
"Name": "insert product test",
"DepartmentId": 1,
"CategoryId": 2,
"BrandId": 2000000,
"LinkId": "insert-product-test",
"RefId": "310117869",
"IsVisible": true,
"Description": "texto de descrição",
"DescriptionShort": "Utilize o CEP 04548-005 para frete grátis",
"ReleaseDate": "2019-01-01T00:00:00",
"KeyWords": "teste,teste2",
"Title": "product de teste",
"IsActive": true,
"TaxCode": "",
"MetaTagDescription": "tag test",
"SupplierId": 1,
"ShowWithoutStock": true,
"AdWordsRemarketingCode": null,
"LomadeeCampaignCode": null,
"Score": 1
}