Manage Jobs

Create Job

post/spaces/{spaceId}/jobs

Path parameters

spaceIdstring required

The unique identifier of the space.

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

{
  "type": "Import",
  "description": "This job imports some GeoJSON data to my space",
  "source": {
    "type": "Files"
  },
  "target": {
    "type": "Space",
    "id": "sdkeuh7"
  }
}

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

{
  "type": "Import",
  "description": "This job imports some GeoJSON data to my space",
  "source": {
    "type": "Files"
  },
  "target": {
    "type": "Space",
    "id": "sdkeuh7"
  }
}

Changes