Skip to main content
PUT
/
vendors
/
{vendorId}
/
review-settings
Update vendor review settings
curl --request PUT \
  --url https://www.renovationfind.com/rest-manager-api-v1/vendors/{vendorId}/review-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "googleReviewEnabled": true,
  "facebookReviewEnabled": true,
  "bbbReviewEnabled": true,
  "otherReviewEnabled": true,
  "otherReviewSiteName": "<string>",
  "customSMSMessage": "<string>",
  "customEmailMessage": "<string>",
  "primaryGoogleReviewLabel": "<string>",
  "reviewLocations": [
    {
      "label": "<string>",
      "googleUrl": "<string>"
    }
  ]
}
'
{
  "success": true,
  "data": {
    "id": 123,
    "googleReviewEnabled": true,
    "facebookReviewEnabled": true,
    "bbbReviewEnabled": true,
    "otherReviewEnabled": true,
    "otherReviewSiteName": "<string>",
    "customSMSMessage": "<string>",
    "customEmailMessage": "<string>",
    "primaryGoogleReviewLabel": "<string>",
    "reviewLocations": [
      {
        "id": 123,
        "label": "<string>",
        "googleUrl": "<string>"
      }
    ]
  },
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.renovationfind.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Path Parameters

vendorId
integer<int64>
required

Body

application/json

Update review settings. All fields are optional. Review locations array replaces existing locations (max 5).

googleReviewEnabled
boolean
facebookReviewEnabled
boolean
bbbReviewEnabled
boolean
otherReviewEnabled
boolean
otherReviewSiteName
string
customSMSMessage
string
Maximum string length: 500
customEmailMessage
string
Maximum string length: 2000
primaryGoogleReviewLabel
string
Maximum string length: 100
reviewLocations
object[]
Maximum array length: 5

Response

Settings updated

success
boolean
data
object
message
string