Embed Token - Generates an embed token for reports
The requested API version
1.0
Optional User Id
Optional User Email
Class for storing details of an embed config report.
A public property of type list of Guid that has both a getter and a setter method, which allows for getting and setting the value of the ReportIds property.
A public property of type list of Guid that has both a getter and a setter method, which allows for getting and setting the value of the DatasetIds property.
Success: Embed token successfully generated for the report.
Bad Request: The request could not be processed due to invalid syntax or missing/incorrect parameters.
Forbidden: Access denied to generate an embed token for the report due to insufficient permissions or account restrictions.
Not Found: The report was not found, the URL is invalid, or the resource has been deleted.
Internal Server Error: An unexpected error occurred or a server timeout.
POST /reports/generateEmbedToken HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 108
{
"reportIds": [
"123e4567-e89b-12d3-a456-426614174000"
],
"datasetIds": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
{
"token": "text",
"tokenId": "123e4567-e89b-12d3-a456-426614174000",
"expiration": "2025-09-01T04:25:53.441Z",
"datasetWithRls": [
"123e4567-e89b-12d3-a456-426614174000"
],
"warningMessage": "text"
}
Last updated