Updating Project User Sharing

To allow end-users to see a project in the QES User Interface Project Dashboard, submit a PUT request to the following endpoint, passing the list of end-user email addresses in the body of the request:

PUT /enterprise/proj-mgmt/v3/Projects/{{projectId}}/sharedusers

Pass the list of end-user email addresses in the body of the request. For example:

{
    "sharedUsers": ["chris.smith@yourcompany.com"]
}

The request returns the number of email addresses that were successfully added and the email addresses of users that could not be added. For example, if chris.smith@yourcompany.com is successfully added, the response looks like this:

{
    "successfullySharedCount": 1,
    "failedSharingUsers": []
}

And if chris.smith@yourcompany.com cannot be added, the response looks like this:

{
    "successfullySharedCount": 0,
    "failedSharingUsers": [
        "chris.smith@yourcompany.com"
    ]
}