Report - Un-shares a report with a user

Method to Unshare the Report to sharedWith user

delete

Unshare the report with the specified user

Authorizations
Path parameters
reportIdstring · uuidRequired

ReportId of type GUID

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body

Class for un-share/revoke access of the report.

notifyByEmailbooleanOptional

A public property of type bool that has both a getter and a setter method, which allows for getting and setting the value of the NotifyByEmail property.

Responses
200
Success: The report was successfully unshared with the specified user.
delete
DELETE /reports/{reportId}/unshare HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 102

{
  "sharedWith": [
    {
      "userId": "123e4567-e89b-12d3-a456-426614174000",
      "email": "text"
    }
  ],
  "notifyByEmail": true
}
{
  "message": "Success Message",
  "statusCode": 200
}

Last updated