# Task n8n operations

Manage tasks. Select **Task** in the Probo node's **Resource** field.

Return to the [complete n8n resource reference](/docs/developers/api/n8n/resources) to browse another resource.

| Operation | Value    | Description              | Source                                                                                                                            |
| --------- | -------- | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |
| Create    | `create` | Create a new task.       | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/task/create.operation.ts) |
| Delete    | `delete` | Delete a task.           | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/task/delete.operation.ts) |
| Get       | `get`    | Get a task.              | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/task/get.operation.ts)    |
| Get Many  | `getAll` | Get many tasks.          | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/task/getAll.operation.ts) |
| Update    | `update` | Update an existing task. | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/task/update.operation.ts) |
