⚙️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 Users and Teams 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.

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.

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.

As an alternative, administrators can leverage Rely's REST API. Here is an example of how you can do this in Javascript.

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();

To use Rely's REST API you need to have an API Token. Check in our documentation how to do it.

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.

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 to brainstorm and gain further insights.

Last updated