TaskInfo Data Type
| name | data type | constraints | description |
|---|---|---|---|
| taskID | number | required int | The taskID |
| wcuID | string | The WCU running the task. | |
| type | AssignmentType | The type of the assignment | |
| assignmentName | string | ||
| taskCreatorID | string | The loginID of the user who created this task. | |
| status | Status | The current status of the task. | |
| lastUploadDate | string | The timestamp of when a file was last uploaded for this task. | |
| creationDate | string | The timestamp of when the task was created. |
Example
{
"taskID" : 1234,
"wcuID" : "04-1B-94-00-1D-2A",
"type" : "shub",
"assignmentName" : "Trigger_test",
"taskCreatorID" : "user123",
"status" : {
"code" : 2,
"text" : "RUNNING"
},
"lastUploadDate" : "2024-03-14T09:31:06Z",
"creationDate" : "2024-03-12T11:31:06Z"
}