Skip to main content
POST
/
jobs
/
{resource}
/
actions
Start/pause/abort a job
import requests

url = "https://{FUSION HOST}/api/jobs/{resource}/actions"

payload = {}
headers = {"Content-Type": "*/*"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
{
  "resource": "<string>",
  "action": "START",
  "accepted": true,
  "message": "<string>"
}

Path Parameters

resource
string
required

The job ID.

Body

*/* · object

One of: start, pause', orabort`.

The body is of type object.

Response

200 - */*

successful operation

resource
string
action
enum<string>
Available options:
START,
PAUSE,
ABORT
accepted
boolean
message
string