Links

Refresh an Analysis

Rerun the Beam correlation and analysis process.

Request

HTTP Request

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

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 POST https://api.predicthq.com/v1/beam/analyses/$ANALYSIS_ID/refresh \
-H "Accept: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN"
import requests
response = requests.post(
url="https://api.predicthq.com/v1/beam/analyses/$ANALYSIS_ID/refresh",
headers={
"Authorization": "Bearer $ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.status_code)

Guides

Below are some guides relevant to this API: