Creates a new contact. Only phone_number is required. Custom properties go inside the attributes JSON object.
/api/v1/contact/createContact phone number with country code (e.g. +917838343515)
Contact first name
Contact last name
Whether request succeeded
Newly created contact UUID
Phone number
First name
Custom fields
Creation timestamp
curl -X POST "https://app.chatofy.in/api/v1/contact/create" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"phone_number":"+917838343515","first_name":"Jane","attributes":{"email":"[email protected]"}}'Was this endpoint guide helpful?