getSmartLinkOperations
Get permitted operations for a Smart Link in the content tree
GET /embeds/{id}/operations HTTP/1.1Parameters
{
"id": {
"description": "The ID of the Smart Link in the content tree for which operations should be returned.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
}
}Response Schema
{
"description": "The list of operations permitted on entity.",
"type": "object",
"properties": {
"operations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"operation": {
"description": "The type of operation.",
"type": "string"
},
"targetType": {
"description": "The type of entity the operation type targets.",
"type": "string"
}
}
}
}
}
}