Get Data Extract Task Status
get
/rest/v19/extract/status/{taskId}
Use this endpoint to return the data extract task status.
Request
Path Parameters
-
taskId(required): string
Data Extract Task Identifier
Response
Supported Media Types
- application/json
Default Response
Returns data extract task status. If the request is for multi-datastore then the response will be of type extractData_TaskStatusResponse_DataStore
Root Schema : extractData_TaskStatusResponse
Type:
Show Source
object-
endTime:
string
Title:
End TimeExtract end time -
startTime:
string
Title:
Start TimeExtract start time -
taskId:
string
Title:
Task IdentifierTask Id -
taskStatus:
string
Title:
Task StatusSubmit Task Message -
totalRows:
string
Title:
Total RowsTotal number of rows extracted
Examples
The following example shows how to return the status of the site if it is available for extraction 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 "Content-type: application/json" http://sitename.oracle.com/rest/v19/extract/status/3022955677
Response Body
{
"Task ID": 3022955677,
"Total Rows Extracted": 1896,
"Task Status": "Completed",
"Start Time": "2023-03-01 13:51:38.0",
"End Time": "2023-03-01 13:52:01"
}