Skip to content

Delete a Task

DELETE https://api.copper.com/developer_api/v1/tasks/{{delete_task_id}}

This request permanently removes a record from your Copper account.

Example Requests

Delete Task

1
2
3
4
5
6
curl --location --request DELETE "https://api.copper.com/developer_api/v1/tasks/{{delete_task_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" \
  --data ""
1
2
3
4
{
  "id": 99999999,
  "is_deleted": true
}