Links

Delete an Analysis

Delete an existing Analysis.

Request

HTTP Request

DELETE https://api.predicthq.com/v1/beam/analyses/$analysis_id

Path Parameters

Parameter
Description
analysis_id
An existing Beam Analysis ID.

Response

If successful, the HTTP response code will be 202 Accepted.

Examples

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)

Guides

Below are some guides relevant to this API: