Refresh an Analysis
Rerun the Beam correlation and analysis process.
POST https://api.predicthq.com/v1/beam/analyses/$analysis_id/refresh
Parameter | Description |
---|---|
analysis_id | An existing Beam Analysis ID. |
If successful, the HTTP response code will be
202 Accepted
.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)
Below are some guides relevant to this API:
Last modified 2mo ago