Create close entity

POST /closeAPI/api/close/entity
application/json

Body Required

Responses

POST /closeAPI/api/close/entity
curl \
 --request POST 'http://close-service:8082/closeAPI/api/close/entity' \
 --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
}