Python
import requests url = "https://api.parallel.ai/v1beta/findall/runs/{findall_id}/cancel" headers = {"x-api-key": "<api-key>"} response = requests.post(url, headers=headers) print(response.json())
"<any>"
Cancel a FindAll run.
Successful Response
The response is of type any.
any