Updates an existing contact identified by phone number. Merges provided fields with existing data.
/api/v1/contact/update/:phoneRecommendation
Phone number in path (e.g. +917838343515).
Phone number of the contact to update (with country code)
Updated first name
Updated last name
Custom key-value properties to merge (JSON object)
Whether request succeeded
Contact UUID
Phone number
Last updated timestamp
curl -X POST "https://app.chatofy.in/api/v1/contact/update/+917838343515" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"first_name":"Mary","attributes":{"city":"Boston"}}'Was this endpoint guide helpful?