ActivationGroupRevisionRevertTaskDto¶
Example Json Object
1{
2 "id": 1001,
3 "queueTime": "2025-09-05T10:15:00Z",
4 "startTime": "2025-09-05T10:16:00Z",
5 "endTime": "2025-09-05T10:20:00Z",
6 "interruptedAt": "2025-09-05T10:18:00Z",
7 "recoveredAt": "2025-09-05T10:19:30Z",
8 "status": {
9 "name": "ACTIVE",
10 "captionKey": "enum.objectStatus.active",
11 "active": true,
12 "caption": "Active"
13 },
14 "recover": true,
15 "interrupted": false,
16 "interruptionMessage": "System maintenance caused interruption",
17 "errorMessage": "Database connection timeout",
18 "activeActivationGroupRevisionId": 5001,
19 "revisionToRevertActivationGroupRevisionId": 5000,
20 "targetActivationGroupRevisionId": 4999,
21 "taskDetails": {}
22}
📄 Description: Represents the execution details of an activation group revision revert task
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
id |
integer(int64) |
false |
none |
Unique identifier for the revert task |
queueTime |
string(date-time) |
false |
none |
Timestamp when the task was queued |
startTime |
string(date-time) |
false |
none |
Timestamp when processing started |
endTime |
string(date-time) |
false |
none |
Timestamp when processing ended |
interruptedAt |
string(date-time) |
false |
none |
Timestamp when the task was interrupted (if applicable) |
recoveredAt |
string(date-time) |
false |
none |
Timestamp when the task was recovered after interruption |
status |
false |
none |
Represents the object status with localized captions and activity state. |
|
recover |
boolean |
false |
none |
Indicates whether the task was recovered after interruption |
interrupted |
boolean |
false |
none |
Indicates if the task was interrupted |
interruptionMessage |
string |
false |
none |
Message describing why the task was interrupted |
errorMessage |
string |
false |
none |
Error details if the task failed |
activeActivationGroupRevisionId |
integer(int64) |
false |
none |
ID of the currently active activation group revision |
revisionToRevertActivationGroupRevisionId |
integer(int64) |
false |
none |
ID of the revision being reverted |
targetActivationGroupRevisionId |
integer(int64) |
false |
none |
ID of the revision targeted after revert |
taskDetails |
object |
false |
none |
Detailed breakdown of the revert task execution |