Report - Un-shares a report with a user
Unshare the report with the specified user
Authorizations
Path parameters
reportIdstring · uuidRequired
ReportId of type GUID
Query parameters
versionstringOptionalDefault:
The requested API version
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.
400
Bad Request: The request was invalid or missing required parameters.
403
Forbidden: Permission denied to unshare the report.
404
Not Found: The specified report does not exist or report is not accessible with the user.
500
Internal Server Error: An unexpected server error occurred.
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