You can use the POST verb to create new KPI data.
Parameters
| Parameter | Description |
|---|---|
| orgUnitXRefCode | The cross-reference codes of the organizational units to add. |
| kpiXRefCode | The cross-reference codes of the KPIs to add. |
| kpiDataType | The type of KPI data to add. Supported values are Actual, Forecast, Plan, and Supplementary. |
| timePeriod | The data time period. Supported values are minute, day, and week. |
Response
The request body contains the values that need to be inserted into the available data entities. The example below shows all of the possible fields in the correct JSON format.
[
{
"OrgUnitXRefCode": "string",
"KpiXRefCode": "string",
"Day": "2023-12-11T18:59:45.307Z",
"Week": "2023-12-11T18:59:45.307Z",
"Minute": "2023-12-11T18:59:45.307Z",
"AggregateToDay": true,
"Value": 0,
"AdjustedValue": 0,
"Forma": "string",
"Forecast": "string",
"AxisXRefCode": "string",
"MdseXRefCode": "string"
}
]