curl --request POST \
--url https://test.api.cxconnect.ai/language/detect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"document": {
"value": "<string>",
"mime_type": "<string>",
"language": "<string>",
"meta": {}
},
"source_hint": "<string>",
"static": {
"hola": "es"
},
"min_confidence": 123,
"min_chars": 123,
"max_chars": 123,
"limit_results": [
"<string>"
],
"no_override": true,
"meta": {
"foo": "bar"
}
}
'