Skip to main content
DELETE
/
workspaces
/
{workspace}
/
contacts
/
{contact}
Delete Contact
curl --request DELETE \
  --url https://lancepilot.com/api/v3/workspaces/{workspace}/contacts/{contact} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Contact deleted successfully.",
  "status": 200
}

Documentation Index

Fetch the complete documentation index at: https://api.lancepilot.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

workspace
string<uuid>
required

ID of the workspace.

contact
string<uuid>
required

ID of the contact.

Response

message
string
required
Example:

"Contact deleted successfully."

status
integer
required
Example:

200