> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Delete contact task

> Deletes one contact task.

`highlevel.deleteContactTask` deletes one contact task.

```ts automations/highlevel-delete-contact-task.automation.ts theme={null}
import { automation, markSignificant } from "automate.ax"
import { highlevel } from "automate.ax/highlevel"

export default automation("Delete contact task", () => {
  markSignificant(
    highlevel.deleteContactTask({
      contactId: "sx6wyHhbFdRXh302LLNR",
      taskId: "ocQHyuzHvysMo5N5VsXc",
    }),
  )
})
```

## Input

| Field       | Type     | Required | Description                 |
| ----------- | -------- | -------- | --------------------------- |
| `contactId` | `string` | Yes      | HighLevel contact id value. |
| `taskId`    | `string` | Yes      | HighLevel task id value.    |

Automate.ax supplies the connected sub-account's location ID. Optional second argument `{ account }` selects a named HighLevel binding.

## Output

| Field      | Type      | Required | Description                      |
| ---------- | --------- | -------- | -------------------------------- |
| `succeded` | `boolean` | No       | Whether the operation succeeded. |

This action calls `DELETE /contacts/{contactId}/tasks/{taskId}` with HighLevel API version `2021-07-28` and requires `contacts.write`. HighLevel validation and permission errors fail the action. Rate limits honor the provider's retry timing.
