Update Contact
Overview
Authentication
Request Headers
Key
Value
Description
Request Body
Field
Type
Required
Description
cURL Example
Response
Last updated
Last updated
curl -X PUT https://api3.blocksurvey.io/contact/update-contact
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"teamId": "team-123",
"listId": "list-456",
"listPublicKey": "base64-public-key",
"recordId": "contact-789",
"oldEmail": "[email protected]",
"Email": "[email protected]",
"First Name": "Jane"
}'Success (200)
{
"success": true,
"recordId": "contact-id"
}