Skip to main content
DELETE
/
contacts
/
{id}
Delete contact
curl --request DELETE \
  --url https://productlane.com/api/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>"
}

Delete Contact

Delete a contact by ID. This action cannot be undone and will remove all associated data. You can only delete contacts from your own workspace.

Path Parameters

id
string
required
Contact ID (1-255 characters)

Response

success
boolean
Indicates whether the deletion was successful
message
string
Confirmation message

Example Request

DELETE /api/v1/contacts/contact_123456789

Example Response

{
  "success": true,
  "message": "Contact deleted successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Required string length: 1 - 255

Response

Successful response

success
boolean
required
message
string
required