Managing Collaborators of Your Scalingo for PostgreSQL® Dedicated Resources Database
Inviting collaborators allows you to share access to a dedicated database while keeping full control over who can manage it.
Unlike Shared Resources databases, a Dedicated Resources database has its own collaborators.
Listing Collaborators of a Database
Using the Dashboard
- From your web browser, open your dashboard
- Once on the database dashboard, click the Settings tab, then select Collaborators
Using the Command Line
- Make sure you have correctly setup the Scalingo command line tool
- From the command line, list the collaborators:
scalingo --database my-dedicated-db collaboratorsThe output should look like this:
┌──────────────────────────────┬──────────┬──────────┬──────────────┐ │ EMAIL │ USERNAME │ STATUS │ ROLE │ ├──────────────────────────────┼──────────┼──────────┼──────────────┤ │ user1@example.com │ user1 │ owner │ owner │ │ user2@example.com │ user2 │ accepted │ collaborator │ │ user3@example.com │ n/a │ pending │ collaborator │ └──────────────────────────────┴──────────┴──────────┴──────────────┘
Inviting a Collaborator
Using the Dashboard
- From your web browser, open your dashboard
- Once on the database dashboard, click the Settings tab, then select Collaborators
- Click the Add button
- Fill the input field with the e-mail address of the collaborator
- Confirm
- The collaborator is added and appears dimmed in the list
- An invite is sent by e-mail to the collaborator
- Once the invite is accepted, the collaborator appears normally in the list
Using the Command Line
- Make sure you have correctly setup the Scalingo command line tool
- From the command line, invite someone:
scalingo --database my-dedicated-db-id collaborators-add user@example.comThe output should look like this:
-----> user@example.com has been invited to collaborate to my-dedicated-db
Removing a Collaborator
Using the Dashboard
- From your web browser, open your dashboard
- Once on the database dashboard, click the Settings tab, then select Collaborators
- Locate the collaborator for whom you want to revoke access
- Open the contextual menu by clicking the corresponding … button
- Select Revoke access
- Confirm by clicking the Revoke access to button in the popup window
Using the Command Line
- Make sure you have correctly setup the Scalingo command line tool
- From the command line, revoke the access:
scalingo --database my-dedicated-db-id collaborators-remove user@example.comThe output should look like this:
-----> user@example.com has been removed from the collaborators of my-dedicated-db
Stopping Collaborating
If you are currently working collaboratively on a dedicated database and have no more interest in participating, you can stop collaborating on your own.
Using the Dashboard
- From your web browser, open your dashboard
- Once on the database dashboard, click the Settings tab, then select Collaborators
- Locate yourself in the list of collaborators
- Open the contextual menu by clicking the corresponding … button
- Select Revoke access
- Confirm by clicking the Revoke access to button in the popup window
Last update: 13 Feb 2026
Suggest edits