The Xeelo Report connector allows you to get reported data from Xeelo running site directly to Integray. For a detailed explanation of how to setup up Xeelo for report, please refer to the Official Xeelo Report tutorial.
Xeelo prerequisites
To successfully perform an report from Xeelo, you must have:
-
A defined service account in your Xeelo instance with:
- An access token (needed in configuration).
- Defined access to the reported objects.
- Defined user allowed to execute the report.
-
Defined an Report Result in your Xeelo instance with:
- Report ID (needed in configuration).
- Report lines (needed in configuration).
The reported data has to be parsed into Output schema properties. Output schema structure must respect Report result output structure. Schema column names (case sensitive) and types must correspond with Report result object structure.
Example
Xeelo Report Result structure definition
Name | Structure line | Nullable |
---|---|---|
Name | Company | No |
Description | Desc | Yes |
EmployeesCount | Employees | No |
CreationDate | CreatedDate | No |
Xeelo Report connector output schema structure
Column | Data type | Allow null |
---|---|---|
Name | string |
No |
Description | string |
Yes |
EmployeesCount | integer |
No |
CreationDate | DateTime |
No |
Configuration
Xeelo Connection configuration
Server URL
URL of your running Xeelo site.
Authorization token
The access token for the service account defined on your running Xeelo site.
Xeelo Report configuration
Report Result ID
The ID of the report defined on your running Xeelo site.
Timeout
Report timeout in seconds. The default value is 100 seconds.
Input & Output Schema
Input
This connector has no input schema defined.
Output
Output schema is mandatory. The structure must respect Xeelo Report result output structure.
Release notes
3.0.4
- Added new description and icon.
3.0.3
- Fixed shared nuget package versions.
3.0.2
- Fixed right processing of nullable properties.