[GET] /reports
/api/bpm/statistics/report-configurations/{id}/reports
Description | Retrieves all available reports associated with a specific statistics report configuration, identified by its ID provided in the path. Optionally, an organizationId can be provided to load process reports for a non-active organization. If not specified, the active organization is used by default. The response returns report data including the report id, name, creation time, the user who initiated the report, and the current state of the report generation process, which can be REPORT_REQUESTED, REPORT_CREATION or REPORT_READY. |
|---|---|
Required Systemrole | R_WFADM_START (ID = 20) |
Request | GET |
Request Optional Query Parameter |
|
Response | JSON |
Minimum Version | 1.4.0 |
Request |
|
Result Example | {
"objects": [
{
"id": "E1C9F6BCBAF64F47BAD89B43206610EA",
"name": "1",
"createTime": "2026-01-06T20:40:19+01:00",
"userId": "BF894230A0324FB887CDD732FCDDD61D",
"userName": "ROOT",
"state": "REPORT_READY"
},
{
"id": "CAD7E50610C04E1BB31931C0E51F5518",
"name": "wefsadfa",
"createTime": "2026-01-12T11:49:19+01:00",
"userId": "BF894230A0324FB887CDD732FCDDD61D",
"userName": "ROOT",
"state": "REPORT_READY"
}
],
"numItems": 2,
"hasMoreItems": false,
"totalNumItems": 2
} |