[POST] /reports

[POST] /reports

/api/bpm/statistics/report-configurations/{id}/reports

Description

Requests new 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.

Body must contain list of objects with string name (mandatory) and ISO timestamp executionTime (optional) or resports to be generated:

  • name - name of the report to be generate

  • executionTime - earliest time at which the report generation can start, if not provided report will be genereted as soon as possible

The response returns report data including the report id, name and creation time.

Required Systemrole

R_WFADM_START (ID = 20)

Request
Method

POST

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

{ "objects": [ { "name": "report 1" }, { "name": "report 2", "createTime": "2026-02-15T10:28:32+01:00" } ] }

Result Example

{ "objects": [ { "id": "1F7929593D8446E68229DD6644C4BCE9", "name": "report 1", "createTime": "2026-02-11T10:28:32+01:00" }, { "id": "46C342309CC040869413786F57E6E699", "name": "report 2", "createTime": "2026-02-11T10:28:32+01:00" } ], "numItems": 2, "hasMoreItems": false, "totalNumItems": 2 }

Response Codes

  • 200 - Success: Reports were successfully created.

  • 400 - Returned when the ID is in an invalid format.

  • 403 - If the user does not have the required role.