๐ Our new and improved config V3 is now live! See API reference for details.
Python
import requests url = "https://platform.reducto.ai/cancel/{job_id}" headers = {"Authorization": "Bearer <token>"} response = requests.post(url, headers=headers) print(response.json())
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Was this page helpful?