Delete an Analysis
Delete an existing Analysis.
DELETE https://api.predicthq.com/v1/beam/analyses/$analysis_id
Parameter | Description |
---|---|
analysis_id | An existing Beam Analysis ID. |
If successful, the HTTP response code will be
202 Accepted
.curl
python
curl -X DELETE https://api.predicthq.com/v1/beam/analyses/$ANALYSIS_ID \
-H "Authorization: Bearer $ACCESS_TOKEN"
import requests
response = requests.delete(
url="https://api.predicthq.com/v1/beam/analyses/$ANALYSIS_ID",
headers={
"Authorization": "Bearer $ACCESS_TOKEN"
}
)
print(response.status_code)
Below are some guides relevant to this API:
Last modified 2mo ago