# 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.


---

# Agent Instructions: 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.rely.io/invite-users.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.
