Report - Shares a report with a user

Share the requested report to the specified user.

post
Authorizations
Path parameters
reportIdstring · uuidRequired

Enter ID of the report to share.

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body

Class for share and 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 shared with the specified user.
post
POST /reports/{reportId}/share 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