Update A Property Of An Entity
To update the property of an existing entity, we need to make the following HTTP request
Update a property which is already added to entity
PUT
/api/v1/{entity-type}/{id}/{entity-property}/{property-id}
Path Parameters
Name | Type | Description |
---|---|---|
entity-type* | String | Type of entity to update |
id* | String | id of the entity to update |
entity-property* | String | entity Property which to be updated in already existing entity |
property-id* | String | entity property osid which is to be updated in already existing property in entity |
Headers
Name | Type | Description |
---|---|---|
content-type* | String | Set to |
authorization | String | Set to |
Usage
cURL
HTTPie
{registry-url}
is usually http://localhost:{port}. The port can be found under theregistry
section in thedocker-compose.yml
file and is usually8081
.
Last updated