← Back to API Reference

PATCH /contact-properties/{id}

Update Contact Property

Compatibility endpoint to update contact property data.

Request (cURL)

curl -X PATCH "http://localhost:8080/v1/contact-properties/id_123" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Preferred Locale"
}'

Response Example

{
  "id": "id_123"
}

Request Body Example

{
  "name": "Preferred Locale"
}