⚙️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.

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": "[email protected]"
}),
});
const data = await response.json();
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 [email protected]
.
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
Was this helpful?