Cancel Extraction
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}Coverage
Cancel Extraction
Ask an in-progress extraction run to stop after the current conversation.
POST
/
api
/
v1
/
coverage
/
extract
/
{run_id}
/
cancel
Cancel Extraction
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/extract/{run_id}/cancel', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}