Extract Questions
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/extract \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"days_ago": 7
}'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/extract"
payload = { "days_ago": 7 }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({days_ago: 7})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/extract', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}Coverage
Extract Questions
Analyze the last N days of conversations to extract business questions.
POST
/
api
/
v1
/
coverage
/
extract
Extract Questions
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/extract \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"days_ago": 7
}'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/extract"
payload = { "days_ago": 7 }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({days_ago: 7})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/extract', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}