> For the complete documentation index, see [llms.txt](https://docs.carpose.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.carpose.de/misc-modules/06_employee-single.md).

# Employee Single

{% hint style="info" %}
The Employee Single component displays the detailed profile of one employee.
{% endhint %}

## Introduction

The `employee-single` component shows a detailed view of a single employee, including contact information, role, and associated store. It is useful for team-member profile pages or contact pages.

## Basic Usage

```html
<div
  data-carpose-component="employee-single"
  data-api-key="your-api-key"
  data-id="550e8400-e29b-41d4-a716-446655440000"
></div>
```

## Attributes

| Attribute                        | Required | Description                                                   |
| -------------------------------- | -------- | ------------------------------------------------------------- |
| `data-carpose-component`         | Yes      | Must be `employee-single`                                     |
| `data-api-key`                   | Yes      | Your Carposé API key                                          |
| `data-id`                        | Yes      | The UUID of the employee to display                           |
| `data-config-show-team-headline` | No       | Show the employee's team name as a headline (default `false`) |

## Behavior

* Fetches and displays the specified employee's details
* Contact information includes email and phone where available
* The associated store is shown with a link to the store page

## Notes

* Requires a valid employee UUID; shows an error if not found
* See also [Employee List](/misc-modules/05_employee-list.md) for a list of employees


---

# 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.carpose.de/misc-modules/06_employee-single.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.
