List GeoRaster Import/Export Jobs

get

{server}/georaster/v1/{datasource}/jobs

List all the import/export jobs.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

List import/export jobs queued, executing or complited.
Body ()
Root Schema : jobsResponse
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : jobBrief
Type: object
Show Source
Examples

Back to Top

Examples

The following is an example on how to list all jobs by submitting a GET request using cURL.

curl -X GET "https://localhost:8080/oraclespatial/georaster/v1/datasource1/jobs" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following shows an example of the response for the above request.

{
"items" : [ {
   "id" : 430682,
   "type" : "EXPORT",
   "fileName" : "out.jpg",
   "link" : "https://localhost:8080/oraclespatial/georaster/v1/datasource1/jobs/430682"
  },{
   "id" : 29583,
   "type" : "IMPORT",
   "fileName" : "world.tif",
   "link" : "https://localhost:8080/oraclespatial/georaster/v1/datasource1/jobs/29583"
  }]
}
Back to Top