> For the complete documentation index, see [llms.txt](https://docs.rely.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rely.io/invite-users.md).

# Invite Users

Building and maintaining software is a team effort. To make the most out of Rely.io invite your team members into the platform.

## Using the web application

You can invite new members to your organization by accessing the `Settings` page through the platform's menu. Fill the new user's email and name and send the invite. The invited user will receive an e-mail to join Rely.io.

<figure><img src="/files/Nr0FNwNTdIYu3hJlx2BT" alt=""><figcaption><p>Invite users to organization</p></figcaption></figure>

{% hint style="info" %}
Currently, all new users are assigned the *Admin* role. We are working on a role-based access control mechanism to allow for more fine-grained control over user permissions.
{% endhint %}

## Using the REST API

Inviting users through the UI is straight forward but requires administrators to invite a single user at a time. This can be time consuming if you need to import tens or hundreds of users.&#x20;

As an alternative, administrators can leverage [Rely's REST API](https://docs.rely.io/public-api/users#/api-v1-legacy-users-invite). Here is an example of how you can do this in *Javascript*.&#x20;

```typescript
const response = await fetch('/api/v1/legacy/users/invite', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "name": "John Doe",
      "email": "john.doe@rely.io"
    }),
});
const data = await response.json();
```

{% hint style="info" %}
To use Rely's REST API you need to have an API Token. Check in our [documentation](/public-api.md) how to do it.
{% endhint %}

## Troubleshooting

If you encounter any issues that you're unable to resolve on your own, please don't hesitate to contact our support team at `support@rely.io`.&#x20;

Additionally, if you would like to discuss a specific use-case you're targeting, feel free to [book a session with one of our experts](https://www.rely.io/demo) to brainstorm and gain further insights.
