Python
import requests url = "https://platform.reducto.ai/cancel/{job_id}" headers = {"Authorization": "Bearer <token>"} response = requests.post(url, headers=headers) print(response.json())
"<any>"
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
The response is of type any.
any
Was this page helpful?