Skip to main content
PUT
/
customer-feedback-system
/
settings
Update workflow settings
curl --request PUT \
  --url https://www.renovationfind.com/rest-api-v1/customer-feedback-system/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "config": "FEEDBACK_REVIEW_REFERRAL",
  "disableDraftReviewStep": false
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Body

application/json
config
enum<string>

Controls which steps are included in the customer experience:

  • FEEDBACK_REVIEW_REFERRAL - All three steps
  • FEEDBACK_REVIEW - Feedback + Review only
  • FEEDBACK_REFERRAL - Feedback + Referral only
  • FEEDBACK - Feedback only
Available options:
FEEDBACK_REVIEW_REFERRAL,
FEEDBACK_REVIEW,
FEEDBACK_REFERRAL,
FEEDBACK
disableDraftReviewStep
boolean

If true, skips the draft review editing step

Response

Settings updated

success
boolean
Example:

true

message
string