v1

latestOpenAPI 3.0.22026-07-17144042.9 KB
Manage Jobs

Create Job

post/jobs

Request body

typestring

The type of the job (deprecated)

idstring

The unique identifier of the job. NOTE: The id will always be generated by the service. It can not be defined by the client.

descriptionstring

A human readable description of the purpose of the job

Example request

{
  "description": "This job exports some data from my space into GeoJSON files",
  "source": {
    "type": "Space",
    "id": "sdkeuh7"
  },
  "target": {
    "type": "Files"
  }
}

Response

The Job

typestring

The type of the job (deprecated)

idstring

The unique identifier of the job. NOTE: The id will always be generated by the service. It can not be defined by the client.

descriptionstring

A human readable description of the purpose of the job

Example response

{
  "description": "This job exports some data from my space into GeoJSON files",
  "source": {
    "type": "Space",
    "id": "sdkeuh7"
  },
  "target": {
    "type": "Files"
  }
}