TaskService schema describes a task service that enables management of long-duration operations, includes the properties for the task service itself, and has links to the resource collection of tasks.NOTE: As patch method is not supported for this schema, properties with Read-only: False attribute are not updatable.
username:passwordAuthorization: Basic *****************X-Auth-Token: ********************curl --location '/redfish/v1/TaskService' \
--header 'Authorization: Basic <encoded-value>'{
"@odata.context": "/redfish/v1/$metadata#TaskService.TaskService",
"@odata.id": "/redfish/v1/TaskService",
"@odata.type": "#TaskService.v1_2_1.TaskService",
"DateTime": "2025-11-06T23:41:49-06:00",
"Description": "Represents the properties for the service itself and has links to the actual list of Tasks",
"Id": "TaskService",
"Name": "Task Service",
"ServiceEnabled": true,
"Status": {
"Health": "OK",
"State": "Enabled"
},
"TaskAutoDeleteTimeoutMinutes": 10,
"Tasks": {
"@odata.id": "/redfish/v1/TaskService/Tasks"
}
}