Report Name.
Introduction to the Data Access Report REST API (1.0.0)
The FlexNet Operations Data Access Report APIs can be used to extract data from the FlexNet Operations Data Warehouse for the purposes of reporting. They allow programmatic access to data using a standard interface on which it is possible to build customer reporting tools. Using the APIs, the data can be integrated into any web or mobile application.
Query the /report/report-names/ API to identify the individual report names (required for the "{group}" parameter).
Data from up to the preceding 30 days can be obtained, eliminating the need to store data in an external data warehouse. Where the quantity of data is large, it is returned in pages. The "header" of the response payload contains URLs to link directly to the previous and next pages of data. A specific page of data can be requested using the pageNumber filter (see the /global-filters/ API).
The API that obtains a report for a particular data group is /report/. The other APIs in the report-controller provide meta data that allow the report API to be understood, in order to plan how to use it in a custom application.
Using the "Try it" Console
To execute an API command using the Try It console, enter the Flexnet Operations Username and Password (in the Authorize section).
Build: 1da3323 (2025-09-25T05:24:58+0000)
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/{group}
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/{group}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/account?mode=batch&format=json&pastDays=1&limitRecords=500&pageNumber=1&query={}' \
-H 'Authorization: YOUR_API_KEY_HERE'- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/{group}
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/{group}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/account' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"property1": {},
"property2": {}
}'Request
This API retrieves information about the data model used in each available report. The response provides the name and type of each data item included in a given report. This information helps you understand the content of a report before you run it against live data. The response also contains information about the filters that can be used for each of the reports.
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-types
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/report-types
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-types' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "data": {} }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-types/{group}
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/report-types/{group}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-types/account' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "data": {} }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-names
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/report-names
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-names?all=false' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "data": {} }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-filters/{group}
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/report-filters/{group}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/report-filters/account' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "data": {} }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/op-list
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/op-list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/op-list' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "property1": "string", "property2": "string" }
- Mock serverhttps://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/global-filters
- Replace {siteID} with your FlexNet Operations instance.http://{siteID}.flexnetoperations.com/data/api/{version}/report/global-filters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fnoapi.redocly.app/_mock/apis/rest/dapi/fno_dataaccess/api/{version}/report/global-filters' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "data": {} }