Returns a TaskResult resource based on id.
GET/TaskResults/:taskResultId
The TaskResult resource with matching id is returned.
Attributes to include in the response can be specified with the attributes query parameter.
Attributes to exclude from the response can be specified with the excludedAttributes query parameter.
The schema related to TaskResult is:
- urn:ietf:params:scim:schemas:sailpoint:1.0:TaskResult
Request
Path Parameters
id of TaskResult resource.
Query Parameters
A comma-separated list of attributes to return in the response. This query parameter supersedes excludedAttributes, so providing the same attribute(s) to both will result in the attribute(s) being returned.
A comma-separated list of attributes to exclude from the response. Some attributes cannot be excluded.
Responses
- 200
Returns a single TaskResult resource based on the id.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Unique identifier of the TaskResult.
Name of the TaskResult.
Type of the TaskResult.
Possible values: [Success
, Warning
, Error
, Terminated
, TempError
]
Completion Status of the TaskResult.
Launcher of the TaskResult.
Host of the TaskResult.
Progress of the TaskResult.
Target Class of the TaskResult.
Target Name of the Task Result.
Flag to indicate this TaskResult is terminated.
Flag to indicate this TaskResult is partitioned.
The launched DateTime of the TaskResult.
The completed DateTime of the TaskResult.
The expiration DateTime of the TaskResult.
The verification DateTime of the TaskResult.
The percentage completed of this TaskResult.
The number of pending signoffs of this TaskResult.
Name of the TaskDefinition of the TaskResult.
Name of the TaskSchedule of the TaskResult.
attributes
undefined[]
A list of attributes of the TaskResult.
The attribute key.
The attribute value.
List of messages of the TaskResult.
meta
object
DateTime when the TaskResult was created.
URL to the TaskResult.
DateTime of TaskResult last modification.
TaskResult version.
Resource type of the metadata subject.
{
"id": "c0a8019c80761c398180856488d2051d",
"name": "Aggregate Composite Application",
"type": "AccountAggregation",
"completionStatus": "Success",
"launcher": "james.smith",
"host": "mandrake.testdomain.com",
"progress": "3/5 tasks completed.",
"targetClass": "Permission",
"targetName": "Adam.Kennedy",
"terminated": false,
"partitioned": true,
"launched": "2022-05-02T10:30:00.014-05:00",
"completed": "2022-05-02T10:30:00.035-05:00",
"expiration": "2022-05-03T16:40:34.271-05:00",
"verified": "2022-05-03T16:40:34.271-05:00",
"percentageComplete": 30,
"pendingSignOffs": 0,
"taskDefinition": "Workflow Launcher",
"taskSchedule": "Perform Identity Request Maintenance",
"attributes": [
{
"key": "inactiveWorkItemsForwarded",
"value": "0"
}
],
"messages": [
[
"Partition 2 is pending."
]
],
"meta": {
"created": "2022-05-02T10:30:00.018-05:00",
"location": "http://localhost:8080/identityiq/scim/v2/TaskResults/c0a8019c80761c398180856488d2051d",
"lastModified": "2022-05-02T10:30:00.036-05:00",
"version": "W\"1651505400036\"",
"resourceType": "TaskResult"
},
"schemas": [
"urn:ietf:params:scim:schemas:sailpoint:1.0:TaskResult"
]
}