Get Data Extract Task Status

get

/rest/v16/extract/status/{taskId}

Use this endpoint to return the data extract task status.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Returns data extract task status. If the request is for multi-datastore then the response will be of type extractData_TaskStatusResponse_DataStore
Body ()
Root Schema : extractData_TaskStatusResponse
Type: object
Show Source
Back to Top

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 - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json" 
http://sitename.oracle.com/rest/v16/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"
}
Back to Top