Use the Entities API to retrieve, create, update, and delete entities. An entity is a set of data that belongs together (such as for a product, campaign, project, story, recipe, or asset).
Use the Entities API to retrieve, create, update, and delete entities. An entity is a set of data that belongs together (such as for a product, campaign, project, story, recipe, or asset).
To use the Try it feature of the Entities API, you need:
Culture of the entity you want to load, for example en-US
. If no culture is provided, multi-language properties are not included. Use the cultures
parameter to retrieve the entity in multiple cultures.
Related entities to load directly instead of being referenced by a URL, for example ParentRelation,ChildRelation
.
Whether to include all permissions the user has on the entity, for example true
or false
.
curl -i -X GET \
'https://your-server/api/entities/{id}?culture=string&cultures=string&groups=string&loadPermissions=false&members=string&nestedRelations=string&renditions=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "id": 0, "identifier": "string", "cultures": [ "string" ], "properties": { "property1": {}, "property2": {} }, "relations": { "property1": {}, "property2": {} }, "created_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "created_on": "2019-08-24T14:15:22Z", "modified_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "modified_on": "2019-08-24T14:15:22Z", "locked_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "locked_on": "2019-08-24T14:15:22Z", "entitydefinition": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "copy": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "copyasync": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "permissions": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "requested_permissions": { "property1": true, "property2": true }, "lifecycle": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "saved_selections": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "roles": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "annotations": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "is_root_taxonomy_item": true, "is_path_root": true, "inherits_security": true, "is_system_owned": true, "version": 0, "full": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "modules": [ "string" ], "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "property1": null, "property2": null }
The new details of the entity.
The requested permissions with identification if a certain user has the permission.
Gets or sets a value indicating whether the entity is a root taxonomy item.
curl -i -X PUT \
'https://your-server/api/entities/{id}?culture=string&cultures=string&groups=string&members=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"identifier": "string",
"cultures": [
"string"
],
"properties": {
"property1": {},
"property2": {}
},
"relations": {
"property1": {},
"property2": {}
},
"created_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"created_on": "2019-08-24T14:15:22Z",
"modified_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"modified_on": "2019-08-24T14:15:22Z",
"locked_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"locked_on": "2019-08-24T14:15:22Z",
"entitydefinition": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"copy": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"copyasync": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"permissions": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"requested_permissions": {
"property1": true,
"property2": true
},
"lifecycle": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"saved_selections": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"roles": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"annotations": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"is_root_taxonomy_item": true,
"is_path_root": true,
"inherits_security": true,
"is_system_owned": true,
"version": 0,
"full": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"modules": [
"string"
],
"self": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"property1": null,
"property2": null
}'
curl -i -X DELETE \
'https://your-server/api/entities/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
curl -i -X GET \
'https://your-server/api/entities/identifier/{identifier}?culture=string&groups=string&loadPermissions=false&members=string&nestedRelations=string&renditions=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "id": 0, "identifier": "string", "cultures": [ "string" ], "properties": { "property1": {}, "property2": {} }, "relations": { "property1": {}, "property2": {} }, "created_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "created_on": "2019-08-24T14:15:22Z", "modified_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "modified_on": "2019-08-24T14:15:22Z", "locked_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "locked_on": "2019-08-24T14:15:22Z", "entitydefinition": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "copy": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "copyasync": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "permissions": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "requested_permissions": { "property1": true, "property2": true }, "lifecycle": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "saved_selections": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "roles": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "annotations": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "is_root_taxonomy_item": true, "is_path_root": true, "inherits_security": true, "is_system_owned": true, "version": 0, "full": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "modules": [ "string" ], "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "property1": null, "property2": null }
The new details of the entity to be updated.
The requested permissions with identification if a certain user has the permission.
Gets or sets a value indicating whether the entity is a root taxonomy item.
curl -i -X PUT \
'https://your-server/api/entities/identifier/{identifier}?culture=string&groups=string&members=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"identifier": "string",
"cultures": [
"string"
],
"properties": {
"property1": {},
"property2": {}
},
"relations": {
"property1": {},
"property2": {}
},
"created_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"created_on": "2019-08-24T14:15:22Z",
"modified_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"modified_on": "2019-08-24T14:15:22Z",
"locked_by": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"locked_on": "2019-08-24T14:15:22Z",
"entitydefinition": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"copy": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"copyasync": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"permissions": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"requested_permissions": {
"property1": true,
"property2": true
},
"lifecycle": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"saved_selections": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"roles": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"annotations": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"is_root_taxonomy_item": true,
"is_path_root": true,
"inherits_security": true,
"is_system_owned": true,
"version": 0,
"full": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"modules": [
"string"
],
"self": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"property1": null,
"property2": null
}'
curl -i -X DELETE \
'https://your-server/api/entities/identifier/{identifier}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
curl -i -X GET \
'https://your-server/api/entitydefinitions/{name}/entities?culture=string&filter=string&groups=string&members=string&nestedRelations=string&skip=0&take=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "last_hit_data": [ "string" ], "items": [ { … } ], "total_items": 0, "returned_items": 0, "offset": 0, "next": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "previous": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "identifier": "string", "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "property1": null, "property2": null }
Creates an entity with the specified details, including associated members and groups. The link to the associated Entity Definition Resource
is required. The self
property is ignored and may be omitted.
If the request body contains an id
, the request is treated as a possible UPSERT
. If the id
is omitted and only an identifier
is provided, the request returns a conflict instead of updating the existing entity. The request then checks for the existence of the entity and if the response is positive, then it updates the entity based on the provided body elements. When an id
is present, the header contains the same Location
property as with a normal POST
response. When an identifier
is used, the header contains an X-Global-Identifier
property with the updated identifier as its value.
Use the Upload API to upload assets to Content Hub.
Details of the entity to be added.
Gets or sets a value indicating whether the entity is a root taxonomy item.
curl -i -X POST \
'https://your-server/api/entities?culture=string&groups=string&members=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"identifier": "string",
"properties": {
"property1": {},
"property2": {}
},
"relations": {
"property1": {
"parents": [
{
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
],
"parent": {
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"children": [
{
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
],
"child": {
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"inherits_security": true,
"parent_total": 0,
"child_total": 0,
"self": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
},
"property2": {
"parents": [
{
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
],
"parent": {
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"children": [
{
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
],
"child": {
"properties": {
"property1": {},
"property2": {}
},
"renditions": {
"property1": {},
"property2": {}
},
"permissions": [
"string"
],
"identifier": "string",
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"inherits_security": true,
"parent_total": 0,
"child_total": 0,
"self": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
}
},
"is_root_taxonomy_item": true,
"is_path_root": true,
"entitydefinition": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
},
"is_system_owned": true,
"inherits_security": true,
"self": {
"href": "string",
"filename_properties": [
"string"
],
"title": "string",
"templated": false
}
}'