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"
}
]
}
'