Skip to content

Delete a Lead

DELETE https://api.copper.com/developer_api/v1/leads/{{example_lead_id}}

This request permanently removes a Lead from your Copper account.

Example Requests

Delete a lead

1
2
3
4
5
curl --location --request DELETE "https://api.copper.com/developer_api/v1/leads/8900677" \
  --header "X-PW-AccessToken: YOUR_TOKEN_HERE" \
  --header "X-PW-Application: developer_api" \
  --header "X-PW-UserEmail: YOUR_EMAIL_HERE" \
  --header "Content-Type: application/json"
1
2
3
4
{
  "id": 8900677,
  "is_deleted": true
}