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 TopResponse
Supported Media Types
- application/json
200 Response
List import/export jobs queued, executing or complited.
Nested Schema : jobBrief
Type:
Show Source
object-
fileName: string
-
id: string
-
link: string
link table details of job
-
type: string
Allowed Values:
[ "IMPORT", "EXPORT" ]
Examples
Links
- jobDetails
-
Operation: {server}/georaster/v1/{datasource}/jobs/{id}Parameters:
- id:
#response.body#/items/0/id
- id:
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"
}]
}