Update Coverage Settings
curl --request PUT \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/settings \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"question_extraction_enabled": true
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/settings"
payload = { "question_extraction_enabled": True }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({question_extraction_enabled: true})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Coverage
Update Coverage Settings
Toggle the daily automatic question extraction.
PUT
/
api
/
v1
/
coverage
/
settings
Update Coverage Settings
curl --request PUT \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/settings \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"question_extraction_enabled": true
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/settings"
payload = { "question_extraction_enabled": True }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({question_extraction_enabled: true})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));⌘I
