Update close entity
Body
Required
-
id
integer -
parentId
integer -
name
string -
number
string -
description
string -
status
string Values are
ACTIVE
,INACTIVE
,DISABLED
,NOT_STARTED
,IN_PROGRESS
,COMPLETE
, orDELETED
. -
type
string Values are
ENTITY
,CLOSE_TASK
, orRECON_TASK
. -
entityId
integer -
collaboration
boolean
PUT
/closeAPI/api/close/entity/{id}
curl \
--request PUT 'http://close-service:8082/closeAPI/api/close/entity/{id}' \
--header "Content-Type: application/json" \
--data '{"id":42,"parentId":42,"name":"string","number":"string","description":"string","status":"ACTIVE","type":"ENTITY","entityId":42,"collaboration":true}'
Request examples
{
"id": 42,
"parentId": 42,
"name": "string",
"number": "string",
"description": "string",
"status": "ACTIVE",
"type": "ENTITY",
"entityId": 42,
"collaboration": true
}
Response examples (200)
{
"id": 42,
"parentId": 42,
"name": "string",
"number": "string",
"description": "string",
"status": "ACTIVE",
"type": "ENTITY",
"entityId": 42,
"collaboration": true
}