Validate close day removal

GET /closeAPI/api/close/day/{id}/validate-removal

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

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

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

    • type string

      Values are ENTITY, CLOSE_TASK, or RECON_TASK.

    • entityId integer
    • entityName string
    • isCollaboration boolean
    • isCritical boolean
    • isClosePackage boolean
    • taskTypeId integer
    • taskTypeName string
    • isAttachmentRequired boolean
GET /closeAPI/api/close/day/{id}/validate-removal
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/day/{id}/validate-removal'
Response examples (200)
[
  {
    "id": 42,
    "parentId": 42,
    "name": "string",
    "number": "string",
    "description": "string",
    "frequencyId": 42,
    "frequencyName": "string",
    "status": "ACTIVE",
    "type": "ENTITY",
    "entityId": 42,
    "entityName": "string",
    "isCollaboration": true,
    "isCritical": true,
    "isClosePackage": true,
    "taskTypeId": 42,
    "taskTypeName": "string",
    "isAttachmentRequired": true
  }
]