Deleting Contact

Deletes a contact from the CRM system. You can send either a single object or an array of objects.
DELETE
/api/contacts
Body Parameters
contact_id

String

Required

Id of contact deal to delete

Request

                    [
   {
      "contact_id": "12345678901234567890"
   }
]
                

Bulk Request

                    [
   {
      "contact_id": "12345678901234567890"
   },
   {
      "contact_id": "23456789012345678901"
   }
]
                
Response:
Contact

Object

all details of the delete contact

Response

                    [
   {
      "id": "12345678901234567890",
      "first_name": "John",
      "last_name": "Doe",
      "email": "johndoe@example.com",
      "phone": "+1234567890",
      "company": "Example Inc.",
      "job_title": "Sales Manager",
      "notes": "Interested in product demo"
   }
]