Redgate Data Modeler

List users with document sharing

To see users you have shared the document with, send a HTTP GET request to the URL /api/v2/share/users/$MODEL_ID.

Related curl example:

curl -u "$TOKEN:" -H "Accept: application/json" https://datamodeler.redgate-platform.com/api/v2/share/users/$MODEL_ID

The sample response looks like the following:

[
    {
        "accessType": "owner",
        "email": "member1@gmail.com",
        "name": "Member 1"
    },
    {
        "accessType": "editor",
        "email": "member2@gmail.com",
        "name": "Member 2"
    },
    {
        "accessType": "viewer",
        "email": "member3@gmail.com",
        "name": "Member 3"
    }
]


Didn't find what you were looking for?