curl --request PUT \
--url https://services.leadconnectorhq.com/products/reviews/{reviewId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"altId": "6578278e879ad2646715ba9c",
"altType": "location",
"productId": "6578278e879ad2646715ba9c",
"status": "approved",
"reply": [
{
"headline": "Amazing product with great quality",
"comment": "This product exceeded my expectations in terms of quality and performance. Highly recommended!",
"user": {
"name": "John Doe",
"email": "example@example.com",
"phone": "+1-555-555-5555",
"isCustomer": true
}
}
],
"rating": "4.5",
"headline": "Amazing product with great quality",
"detail": "The product is for sure a must and recommended buy"
}
'{
"status": true,
"message": "Successfully created"
}Update status, reply, etc of a particular review
curl --request PUT \
--url https://services.leadconnectorhq.com/products/reviews/{reviewId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"altId": "6578278e879ad2646715ba9c",
"altType": "location",
"productId": "6578278e879ad2646715ba9c",
"status": "approved",
"reply": [
{
"headline": "Amazing product with great quality",
"comment": "This product exceeded my expectations in terms of quality and performance. Highly recommended!",
"user": {
"name": "John Doe",
"email": "example@example.com",
"phone": "+1-555-555-5555",
"isCustomer": true
}
}
],
"rating": "4.5",
"headline": "Amazing product with great quality",
"detail": "The product is for sure a must and recommended buy"
}
'{
"status": true,
"message": "Successfully created"
}Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.
API Version
2021-07-28 Review Id
"6578278e879ad2646715ba9c"
Location Id or Agency Id
"6578278e879ad2646715ba9c"
location Product Id
"6578278e879ad2646715ba9c"
Status of the review
"approved"
Reply of the review
Show child attributes
Rating of the product
"4.5"
Headline of the Review
"Amazing product with great quality"
Detailed Review of the product
"The product is for sure a must and recommended buy"
Was this page helpful?