POST
/
cancel
/
{job_id}
import requests

url = "https://platform.reducto.ai/cancel/{job_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.request("POST", url, headers=headers)

print(response.text)
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Response

200
application/json
Successful Response

The response is of type any.

Was this page helpful?