Skip to main content
POST
/
api
/
Configuration
/
KPI
cURL
curl --request POST \
  --url https://api.example.com/api/Configuration/KPI \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "id": 123,
  "customerId": 123,
  "name": "<string>",
  "description": "<string>",
  "reoccuranceTypeId": 123,
  "reoccuranceType": "<string>",
  "effectiveDate": "2023-11-07T05:31:56Z",
  "userConfigurations": [
    {
      "id": 123,
      "kpiId": 123,
      "userId": 123,
      "user": "<string>",
      "value": 123,
      "createdBy": 123
    }
  ],
  "metric": {
    "type": 123,
    "subTypes": [
      123
    ],
    "options": 123,
    "status": [
      123
    ],
    "dateBasedOn": 123
  }
}
'

Body

id
integer<int32>
customerId
integer<int32>
name
string | null
description
string | null
reoccuranceTypeId
integer<int32>
reoccuranceType
string | null
effectiveDate
string<date-time>
userConfigurations
object[] | null
metric
object

Response

200

OK