Skip to main content
PUT
/
products
/
reviews
/
{reviewId}
Update Product Reviews
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"
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

reviewId
string
required

Review Id

Example:

"6578278e879ad2646715ba9c"

Body

application/json
altId
string
required

Location Id or Agency Id

Example:

"6578278e879ad2646715ba9c"

altType
enum<string>
required
Available options:
location
productId
string
required

Product Id

Example:

"6578278e879ad2646715ba9c"

status
string
required

Status of the review

Example:

"approved"

reply
object[]

Reply of the review

rating
number

Rating of the product

Example:

"4.5"

headline
string

Headline of the Review

Example:

"Amazing product with great quality"

detail
string

Detailed Review of the product

Example:

"The product is for sure a must and recommended buy"

Response

Successful response

status
boolean
required

Status of api action

Example:

true

message
string

Success message

Example:

"Successfully created"

Last modified on March 4, 2026