> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Tasks ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-crm-v2/tasks/introduction.md ## Article Content: --- title: Introduction --- # Introduction With [Tasks](https://support.wix.com/en/article/wix-contacts-creating-and-managing-tasks-reminders), site admins can efficiently create and manage tasks on a site. This enables site admins to organize and prioritize their daily activities, enhancing their customer relationship management. Tasks include activities such as follow up calls or emails, scheduling meetings with clients, tracking steps for customer onboarding, and more. Use tasks to organize and prioritize your work with [Ascend by Wix](https://support.wix.com/en/article/about-ascend-by-wix). The Tasks API allows you to: - [Create](/tasks/create-task) and [update](/tasks/update-task) tasks with the option to set a due date or to link the task to a contact. - [Count](/tasks/count-tasks) the total amount of tasks, or count the amount of tasks based on provided filters. For example, you can count the number of tasks that are linked to a specific contact. - [Retrieve](/tasks/query-tasks) tasks. - [Prioritize](/tasks/move-task-after) your tasks by adjusting the display order. - [Delete](/tasks/delete-task) tasks you no longer need. ## Before you begin It is important to note the following before you start to code: - The `dueDate` field only accepts dates formatted as a JS Date object. This field doesn't work with functional testing as JSON doesn't accept Date objects. To use the Tasks API, import `tasks` from `wix-crm.v2`: ```js import { tasks } from 'wix-crm.v2'; ``` ## Permissions information Functions in the Tasks API are restricted and only run if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.

Warning: Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.

## Terminology - **Task**: A specific activity, action, or assignment that needs to be completed by a site admin. - **Reminder notification**: A notification that is sent if the task has a due date. The reminder is sent the day before the due date and on the due date.