Skip to main content
POST
/
customer-feedback-system
/
batch
Batch import customer feedback requests
curl --request POST \
  --url https://www.renovationfind.com/rest-api-v1/customer-feedback-system/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requestsImported": [
    {
      "customerName": "John Doe",
      "email": "john@example.com",
      "phone": "5551234567"
    },
    {
      "customerName": "Jane Smith",
      "email": "jane@example.com",
      "phone": "5559876543"
    }
  ]
}
'
{
  "success": true,
  "message": "Batch import successful. 2 requests queued for delivery."
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Body

application/json
requestsImported
object[]
required
Required array length: 1 - 1500 elements

Response

Batch import accepted and queued for delivery

success
boolean
Example:

true

message
string