Python
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>" }
Start, pause, or abort the specified job.
The job ID.
One of: start, pause', orabort`.
start
pause', or
The body is of type object.
object
successful operation
START
PAUSE
ABORT
Was this page helpful?