config_get
GET
/config
const url = 'https://example.com/config';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/configGet the runtime configuration.
Responses
Section titled “ Responses ”Runtime configuration
Media type application/json
Runtime configuration
object
evidence_extractor_url
required
Base URL of the configured evidence extractor.
string
Example generated
{ "evidence_extractor_url": "example"}Internal error
Media type application/json
object
message
required
string
Example generated
{ "message": "example"}