Embed Token - Generates an embed token for reports

Generates an embed token for reports.

post
Authorizations
Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

embedfast-user-emailstringOptional

Optional User Email

Body

Class for storing details of an embed config report.

reportIdsstring · uuid[] | nullableOptional

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.

datasetIdsstring · uuid[] | nullableOptional

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.

Responses
200
Success: Embed token successfully generated for the report.
post
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-06-27T11:11:19.129Z",
  "datasetWithRls": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "warningMessage": "text"
}

Last updated