Entities Management
Create a new entity
Create a new entity in the system with the provided information
post/api/v1/entities/{templateIdentifier}
Path parameters
templateIdentifierstring required
Request body
Example request
{
"identifier": "my-web-service",
"name": "my-web-service",
"properties": {
"port": "8080",
"environment": "dev"
},
"relations": [
{
"name": "depends-on",
"target_entity_identifiers": [
"web-api-1",
"web-api-2"
]
}
]
}Response
Entity created successfully