Get system value group with system values

GET /closeAPI/api/close/lov/system-group/{id}

Path parameters

  • id integer Required

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • applicationId integer
    • isDeactivatable boolean
    • isAddable boolean
    • isRenameable boolean
    • values array[object]
      Hide values attributes Show values attributes object
      • id integer
      • systemValueGroupId integer
      • name string
      • shortName string
      • exportValue string
      • order integer
      • status string

        Values are ACTIVE, INACTIVE, DISABLED, NOT_STARTED, IN_PROGRESS, COMPLETE, or DELETED.

GET /closeAPI/api/close/lov/system-group/{id}
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/lov/system-group/{id}'
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"
    }
  ]
}