Export - Initiates the export process of a report

Initiates the export process of an existing report.

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 export file.

reportIdstring · uuidRequired

A public property of type Guid (a unique identifier) that has both a getter and a setter method, which allows for getting and setting the value of the ReportId property.

exportTypestring · min: 1Required

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

isPaginatedbooleanRequired

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 paginated property.

filterstring | nullableOptional
bookmarkStatestring | nullableOptional

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

pageNamestring | nullableOptional

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

visualNamestring | nullableOptional

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

Responses
200
Success: Export process successfully initiated for the report.
post
POST /export HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 335

{
  "reportId": "a2b04a90-7320-4e76-8a90-8cbdd603d134",
  "exportType": "pdf",
  "isPaginated": true,
  "filter": "TableName/ColumnName eq 'Value' and TableName/AnotherColumn gt 10",
  "bookmarkState": "string",
  "pageName": "string",
  "visualName": "string    ",
  "reportParameter": [
    {
      "name": "Parameter1",
      "value": "Value1"
    },
    {
      "name": "Parameter2",
      "value": "Value2"
    }
  ]
}
{
  "id": "text",
  "createdDateTime": "2025-06-27T11:00:47.827Z",
  "lastActionDateTime": "2025-06-27T11:00:47.827Z",
  "reportId": "123e4567-e89b-12d3-a456-426614174000",
  "reportName": "text",
  "status": 0,
  "percentComplete": 1,
  "resourceLocation": "text",
  "resourceFileExtension": "text",
  "expirationTime": "2025-06-27T11:00:47.827Z"
}

Last updated