get https://{accountName}.{environment}.com.br/api/catalog_system/pvt/products/productget/
Retrieves a specific product's general information as name, description and the trade policies that it is included.
Response body object has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | Product ID |
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 Referential 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 |
ListStoreId | array | List with the Trade Policies IDs that the product is included |
AdWordsRemarketingCode | string | Code specific for AdWords Remarketing |
LomadeeCampaignCode | string | Code specific for Lomadee Campaign |
Response body example:
{
"Id": 1,
"Name": "Ração Royal Canin Feline Urinary",
"DepartmentId": 1,
"CategoryId": 10,
"BrandId": 2000000,
"LinkId": "racao-royal-canin-feline-urinary",
"RefId": "",
"IsVisible": true,
"Description": "Descrição.",
"DescriptionShort": "",
"ReleaseDate": "2020-01-06T00:00:00",
"KeyWords": "bbbbbbbbbbbb*, [email protected]",
"Title": "Ração Royal Canin Feline Urinary",
"IsActive": true,
"TaxCode": "",
"MetaTagDescription": "Descrição.",
"SupplierId": null,
"ShowWithoutStock": true,
"ListStoreId": [
1,
2,
3
],
"AdWordsRemarketingCode": null,
"LomadeeCampaignCode": null
}