Get Task
get
/rest/v19/tasks/{taskId}
This endpoint retrieves information for the specified task.
Request
Path Parameters
-
taskId(required): string
The Task ID
Response
Default Response
Task details
Root Schema : task
Type:
Show Source
object-
category:
object category
-
dateAdded:
string
Title:
Date createdTask creation date -
dateModified:
string
Title:
Date Last ModifiedThe date of the last task modification -
detailStatus:
object Detail Status
Title:
Detail StatusDetail Status for entities associated with this task -
executionTime:
string
Title:
Execution timeThe time the task was executed -
files:
array File list
Title:
File listList of files associated with this task -
id:
integer
Title:
Task IDThe task ID -
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable -
name:
string
Title:
Task nameThe task name -
result:
string
Title:
Task resultThe task result -
status:
string
Title:
Status of taskTask status
Nested Schema : category
Type:
Show Source
object-
displayValue:
string
Title:
Category display type -
lookupCode:
string
Title:
Category identifier
Nested Schema : Detail Status
Type:
objectTitle:
Detail StatusDetail Status for entities associated with this task
Show Source
-
items:
array Entities Statuses
Title:
Entities StatusesStatuses for all the entities -
message:
string
Title:
High level message for task.
Nested Schema : File list
Type:
arrayTitle:
File listList of files associated with this task
Show Source
Nested Schema : Reference Links
Type:
objectTitle:
Reference LinksReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
hrefURL to the related object -
rel:
string
Title:
LinkLink relationship to the current object
Nested Schema : Entities Statuses
Type:
arrayTitle:
Entities StatusesStatuses for all the entities
Show Source
-
Array of:
object Entity Status
Title:
Entity StatusEntity Status
Nested Schema : Entity Status
Type:
objectTitle:
Entity StatusEntity Status
Show Source
-
entity:
string
Title:
Entity Display NameEntity Display Name -
status:
string
Title:
Entity StatusEntity Status -
summary:
array Summary
Title:
SummarySummary of message and type for entity
Nested Schema : Summary
Type:
arrayTitle:
SummarySummary of message and type for entity
Show Source
-
Array of:
object Summary Details
Title:
Summary DetailsSummary Details
Nested Schema : Summary Details
Type:
objectTitle:
Summary DetailsSummary Details
Show Source
-
level:
string
Title:
Message LevelMessage Level -
messages:
array Messages
Title:
MessagesMessages
Nested Schema : Messages
Type:
arrayTitle:
MessagesMessages
Show Source
-
Array of:
string
Title:
MessageMessage
Nested Schema : file
Type:
Show Source
object-
name:
string
Title:
File name -
type:
string
Title:
File typeFile can be of type plain text, csv etc
Examples
The following example shows how to return information for the specified status log task by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/tasks/41365771
Response Body Sample
{
"id": 41365771,
"dateModified": "10/18/2019 1:18 PM",
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/tasks/41365771"
}, {
"rel": "parent",
"href": "https://sitename.oracle.com/rest/v19/tasks"
}
],
"name": "Rack_Domain Export",
"category": {
"lookupCode": "26",
"displayValue": "Data Table Export"
},
"status": "Completed",
"result": "datatable_1571422724473",
"executionTime": "10/18/2019 1:18 PM",
"dateAdded": "10/18/2019 1:18 PM"
}