Skip to content

Delete a Company

DELETE https://api.copper.com/developer_api/v1/companies/{{delete_company_id}}

This request permanently removes a Company from your Copper account.

Example Requests

Delete Person

1
2
3
4
5
curl --location --request DELETE "https://api.copper.com/developer_api/v1/companies/{{example_person_id}}" \
  --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": 26443553,
  "is_deleted": true
}