[GET] /reports

[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
Method

GET

Request Optional Query Parameter

  • organizationId (String): The id of the organization where the requested reports are located.

Response
Format

JSON

Minimum Version

1.4.0

Request
Example

/api/bpm/statistics/report-configurations/1E4142D5F1D546BBBE379B3FB9FAD46D/reports

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 }