Skip to main content
POST
/
customer-feedback-system
Create a customer feedback request
curl --request POST \
  --url https://www.renovationfind.com/rest-api-v1/customer-feedback-system \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerName": "John Doe",
  "email": "john@example.com",
  "phone": "5551234567"
}
'
{
  "success": true,
  "message": "Duplicate request detected. Skipped."
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Query Parameters

skipDuplicates
boolean
default:true

If true, silently skips when a duplicate email/phone already exists for this vendor.

Body

application/json
customerName
string
required

Full name of the customer

Example:

"John Doe"

email
string<email>

Customer email address. If comma-separated, only the first is used.

Example:

"john@example.com"

phone
string

Customer phone number

Example:

"5551234567"

Response

Duplicate detected and skipped (when skipDuplicates=true)

success
boolean
Example:

true

message
string