Delete an existing contact by their unique slug.
Request
DELETE
DELETE /v1/contact/:slug
Path Parameter
- slug
stringReplace
:slugwith the contact's unique slug in the request URL.
Headers
- Authorization: Bearer your_access_token
Response
200
Body
- id
numberExample: 28
- first_name
stringExample: Anjali
- last_name
stringExample: Kotwani
- slug
stringExample: contact_68ba678fcd2a83f4640c
- full_name
stringExample: Anjali Kotwani
- email
stringExample: anjali@gmail.com
- tags
stringExample: [frontend, developer, javascript]
- phone
stringExample: +917489011449
- profile_picture
stringExample: image.jpg
- designation
stringExample: intern
- address
stringExample: rau bypass
- city
stringExample: indore
- stage
objectExample:
"id": 1,
"label": "lost" - description
stringExample: Experienced software engineer with a focus on frontend development.
- organization
objectExample:
"id": 1 - created_at
string (ISO 8601 date)Example: 2015-05-15T00:00:00Z
- updated_at
string (ISO 8601 date)Example: 2015-05-15T00:00:00Z
- created_by
objectExample:
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null - updated_by
objectExample:
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null - owner
objectExample:
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null - socials
objectExample:
"linkedin": "anjalilinkedin.com",
"xing": "anjali.com" - custom fields:
objectExample:
"id": 1,
"field_name": "textfeild",
"field_type": "string",
"value": "anjali"
401
Body
- Unauthorized
404
Body
- Contact does not exist
Response Example
{
"id": 28,
"first_name": "Anjali",
"last_name": "Kotwani",
"slug": "contact_68ba678fcd2a83f4640c",
"full_name": "Anjali Kotwani",
"email": "anjali@gmail.com",
"tags": null,
"phone": "+917489011449",
"profile_picture": "",
"designation": "",
"address": "",
"city": "",
"stage": {
"id": 1,
"label": "Prospect"
},
"description": "",
"organization": null,
"created_at": "2024-08-10T17:57:52.000Z",
"updated_at": "2024-08-11T11:49:27.000Z",
"created_by": {
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null
},
"updated_by": {
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null
},
"owner": {
"id": 1,
"email": "Rohan@abc.com",
"first_name": "Rohan",
"last_name": "Sharma",
"full_name": "Rohan Sharma",
"role": "Admin",
"phone": null
},
"socials": {
"linkedin": "",
"xing": ""
},
"custom_fields": [
{
"id": 7,
"field_name": "Drop",
"field_type": "dropdown",
"value": ""
},
{
"id": 8,
"field_name": "Multi",
"field_type": "multiselect",
"value": ""
},
{
"id": 2,
"field_name": "Percentage",
"field_type": "percentage",
"value": "0"
}
]
}