Updating Filtered Network Sharing
To add users who must see a filtered network in the QES Project Dashboard, submit a PUT request to the following endpoint:
PUT /enterprise/data-mgmt/v3/providernetworks/filtered/{{filteredNetworkId}}/sharedUsersPass 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"]}