> For the complete documentation index, see [llms.txt](https://docs.appmixer.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appmixer.com/6.0/v4.1/app-registration/people-tasks.md).

# People Tasks

If the built-in People Tasks component *RequestApprovalEmail* is triggered, it sends an email with task details. This email contains a link to a frontend page where the user can see the task. To build that link, the component needs to know the frontend URL.&#x20;

The default value for the PEOPLE\_TASKS\_DASHBOARD\_URL variable is `http://localhost:8080/people-tasks`

docker-compose.yml example:

```
  engine:
    environment:
      - PEOPLE_TASKS_DASHBOARD_URL=${PEOPLE_TASKS_DASHBOARD_URL:-http://localhost:8080/people-tasks}
```

In your installation, this is going to point to your People Tasks Dashboard implementation. You can use the [Appmixer SDK](/6.0/v4.1/appmixer-sdk/api-reference/peopletasks.md#appmixer-ui-peopletasks) to build that Dashboard or you can write your own. The backend API for that is described [here](/6.0/v4.1/api/people-task.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.appmixer.com/6.0/v4.1/app-registration/people-tasks.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
