# 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="https://1179008450-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F1eBCWu9rFSzq3ahnNrmL%2Fuploads%2Fspv3e7VccnDrwECpSHJm%2Fimage.png?alt=media&#x26;token=7fb9e71a-5da8-49d9-bdf9-dc4108ff3610" 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](https://docs.rely.io/public-api) 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.
