Get controls

GET /closeAPI/api/compliance/control

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • number string
    • description string
    • status string

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

    • type object
      Hide type attributes Show type 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.

    • importance object
      Hide importance attributes Show importance 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.

    • frequency object
      Hide frequency attributes Show frequency 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/compliance/control
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/compliance/control'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "number": "string",
    "description": "string",
    "status": "ACTIVE",
    "type": {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    },
    "importance": {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    },
    "frequency": {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    }
  }
]