DELETE api/contacts/{contact}
Deletes a given contact. NOTE! Also deletes its group memberships, if any.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contact |
Contact ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Summary of deleted contact
ContactFullDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| OwnerID |
ID of account owning the contact |
string |
None. |
| Created |
Timestamp when contact was added |
date |
None. |
| Modified |
Timestamp when contact was last modified |
date |
None. |
| ID |
Contact ID |
integer |
Required |
| Title |
Contact title (within organization) |
string |
None. |
| Notes |
Contact notes |
string |
None. |
| Organization |
Contact company or other organization |
string |
None. |
| FirstName |
Contact first name |
string |
Required String length: inclusive between 0 and 100 |
| LastName |
Contact last name |
string |
String length: inclusive between 0 and 100 |
| Phone |
Contact phone number in E164 format |
string |
Required String length: inclusive between 0 and 16 Valid phonenumber |
|
Contact email adress |
string |
String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
{
"OwnerID": "sample string 1",
"Created": "2025-12-16T03:27:23.0903926+00:00",
"Modified": "2025-12-16T03:27:23.0903926+00:00",
"ID": 2,
"Title": "sample string 3",
"Notes": "sample string 4",
"Organization": "sample string 5",
"FirstName": "sample string 6",
"LastName": "sample string 7",
"Phone": "sample string 8",
"Email": "sample string 9"
}