[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:
The response returns report data including the report id, name and creation time. |
|---|---|
Required Systemrole | R_WFADM_START (ID = 20) |
Request | POST |
Request Optional Query Parameter |
|
Response | JSON |
Minimum Version | 1.4.0 |
Request |
{
"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 |
|