Get move task options

GET /closeAPI/api/close/task/{id}/move-options

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • parentId integer
    • hasChildren boolean
    • name string
    • number string
    • description 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.

GET /closeAPI/api/close/task/{id}/move-options
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/task/{id}/move-options'
Response examples (200)
[
  {
    "id": 42,
    "parentId": 42,
    "hasChildren": true,
    "name": "string",
    "number": "string",
    "description": "string",
    "status": "ACTIVE",
    "type": "ENTITY"
  }
]