curl --request POST \
--url https://app.textql.com/v1/chat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"question": "<string>",
"chatId": "<string>",
"tools": {
"connectorIds": [
123
],
"webSearchEnabled": true,
"sqlEnabled": true,
"ontologyEnabled": true,
"experimentalEnabled": true,
"tableauEnabled": true,
"autoApproveEnabled": true,
"pythonEnabled": true,
"streamlitEnabled": true,
"googleDriveEnabled": true,
"powerbiEnabled": true
}
}
'