Update system value group

PUT /closeAPI/api/close/lov/system-group
application/json

Body Required

Responses

PUT /closeAPI/api/close/lov/system-group
curl \
 --request PUT 'http://close-service:8082/closeAPI/api/close/lov/system-group' \
 --header "Content-Type: application/json" \
 --data '{"id":42,"name":"string","applicationId":42,"isDeactivatable":true,"isAddable":true,"isRenameable":true,"values":[{"id":42,"systemValueGroupId":42,"name":"string","shortName":"string","exportValue":"string","order":42,"status":"ACTIVE"}]}'
Request examples
{
  "id": 42,
  "name": "string",
  "applicationId": 42,
  "isDeactivatable": true,
  "isAddable": true,
  "isRenameable": true,
  "values": [
    {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    }
  ]
}
Response examples (200)
{
  "id": 42,
  "name": "string",
  "applicationId": 42,
  "isDeactivatable": true,
  "isAddable": true,
  "isRenameable": true,
  "values": [
    {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    }
  ]
}