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¶
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 ""
{
"id": 99999999,
"is_deleted": true
}