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

# Invite an user

> Invite a user to an existing team

### Body

<ParamField body="email" type="string" required="true">
  Email address of the user to invite
</ParamField>

<ParamField body="role" type="string" required="true">
  Role of the user to invite. Possible values are <code>OWNER</code>, <code>ADMIN</code>, and <code>MEMBER</code>
</ParamField>

### Path

<ParamField path="slug" type="string" required="true">
  Team slug of the team to invite the user to
</ParamField>

<RequestExample>
  ```bash Request
  curl --location --request POST 'http://localhost:3005/api/teams/acme/invites' \
  --header 'Accept: application/json' \
  --header 'Authorization: Token <token>' \
  --data '{
    "email": "david@example.com",
    "role": "MEMBER"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response
  {
    "data": {

    }
  }
  ```
</ResponseExample>
