Move close entity

POST /closeAPI/api/close/entity/{id}/move

Path parameters

  • id integer Required
application/json

Body Required

integer integer

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • parentId integer
    • 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.

    • entityId integer
    • collaboration boolean
POST /closeAPI/api/close/entity/{id}/move
curl \
 --request POST 'https://customer.trintech.com/closeAPI/api/close/entity/{id}/move' \
 --header "Content-Type: application/json" \
 --data '42'
Request examples
42
Response examples (200)
{
  "id": 42,
  "parentId": 42,
  "name": "string",
  "number": "string",
  "description": "string",
  "status": "ACTIVE",
  "type": "ENTITY",
  "entityId": 42,
  "collaboration": true
}