Delete an existing Analysis Group.
Last updated 1 month ago
PredictHQ
© 2024 PredictHQ Ltd
DELETE https://api.predicthq.com/v1/beam/analysis-groups/$group_id
If successful, the HTTP response code will be 202 Accepted.
202 Accepted
curl -X DELETE "https://api.predicthq.com/v1/beam/analysis-groups/$GROUP_ID" \ -H "Authorization: Bearer $ACCESS_TOKEN"
import requests response = requests.delete( url="https://api.predicthq.com/v1/beam/analysis-groups/$GROUP_ID", headers={ "Authorization": "Bearer $ACCESS_TOKEN" } ) print(response.status_code)
group_id
An existing Beam Analysis Group ID.