メインコンテンツへスキップ

list-cloud-diagram-node-activities

dci list-cloud-diagram-node-activities [flags]

Returns individual activity records for the specified component node, ordered by timestamp descending.

Flags

--ss-id: (string)

--node-id: (string)

--limit: (integer)

--offset: (integer)

Responses

200 (application/json)

OK - Node activity records returned.

{
"type": "array",
"items": {
"type": "object",
"required": [
"_id",
"activity",
"timestamp",
"user",
"statussheet"
],
"description": "An individual activity record scoped to a specific component node.",
"properties": {
"_id": {
"type": "string",
"description": "Activity record ID."
},
"activity": {
"type": "string",
"enum": [
"NODE_CREATE",
"NODE_UPDATE",
"NODE_DELETE"
],
"description": "Activity type."
},
"metadata": {
"type": "object",
"additionalProperties": true,
"description": "Activity-specific payload (structure varies by activity type)."
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the activity."
},
"user": {
"type": "string",
"description": "ID of the user who performed the activity."
},
"statussheet": {
"type": "string",
"description": "Layer ID where the activity occurred."
}
}
}
}

400 (application/json)

Bad Request - The server cannot process the request, often due to a malformed request.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

401 (application/json)

Unauthorized - Invalid API key.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

403 (application/json)

Forbidden - The client is not authorized to perform the request.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

Aliases: list-cloud-diagram-node-activities, listclouddiagramnodeactivities