curl --request PATCH \
--url http://localhost:3000/v1/scraped-products/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"brand": "<string>",
"is_active": true,
"category_name": "<string>",
"subcategory_name": "<string>"
}
'{
"success": true,
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"brand": "<string>",
"is_active": true,
"updated_at": "<string>"
}
}Update a scraped product
curl --request PATCH \
--url http://localhost:3000/v1/scraped-products/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"brand": "<string>",
"is_active": true,
"category_name": "<string>",
"subcategory_name": "<string>"
}
'{
"success": true,
"product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"brand": "<string>",
"is_active": true,
"updated_at": "<string>"
}
}Scraped product UUID
"550e8400-e29b-41d4-a716-446655440000"
Update scraped product request