import { Textql } from "@textql/sdk";
const textql = new Textql({
apiKey: process.env["TEXTQL_API_KEY"] ?? "",
});
async function run() {
const result = await textql.settingsService.settingsServiceUpdateOrganizationSettings({
body: {},
});
console.log(result);
}
run();curl --request POST \
--url https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--header 'tql_api_key: <api-key>' \
--data '
{
"orgId": "<string>",
"hideExampleConnectors": true,
"paradigmParams": {
"webSearchEnabled": true,
"sqlEnabled": true,
"ontologyEnabled": true,
"pythonEnabled": true,
"powerbiEnabled": true,
"googleDriveEnabled": true,
"formEditorEnabled": true,
"tableauEnabled": true,
"fileUploadEnabled": true,
"multipleConnectorMode": true,
"playbookToolsEnabled": true,
"microsoft365Enabled": true,
"bashEnabled": true,
"javascriptEnabled": true,
"modelSwitchingEnabled": true,
"feedExplorerEnabled": true,
"feedPostEnabled": true,
"feedCommentEnabled": true,
"feedEngageEnabled": true,
"compactionDisabled": true,
"gmailEnabled": true,
"chatHistorySearchEnabled": true,
"googleCalendarEnabled": true,
"parallelToolsEnabled": true,
"emailOutputEnabled": true,
"questionsToolEnabled": true,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": [
"<string>"
],
"datasetIds": [
"<string>"
],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"trainingMode": true,
"dashboardsEnabled": true,
"methodologyEnabled": true,
"feedEnabled": true,
"observabilityEnabled": true,
"notificationsEnabled": true,
"fastModeEnabled": true,
"maxThinkingEnabled": true,
"tracesEnabled": true,
"sandboxObservabilityEnabled": true,
"dataAppsEnabled": true,
"toolRestrictions": {
"webSearchEnabled": true,
"sqlEnabled": true,
"ontologyEnabled": true,
"pythonEnabled": true,
"powerbiEnabled": true,
"googleDriveEnabled": true,
"formEditorEnabled": true,
"tableauEnabled": true,
"fileUploadEnabled": true,
"multipleConnectorMode": true,
"playbookToolsEnabled": true,
"microsoft365Enabled": true,
"bashEnabled": true,
"javascriptEnabled": true,
"modelSwitchingEnabled": true,
"feedExplorerEnabled": true,
"feedPostEnabled": true,
"feedCommentEnabled": true,
"feedEngageEnabled": true,
"compactionDisabled": true,
"gmailEnabled": true,
"chatHistorySearchEnabled": true,
"googleCalendarEnabled": true,
"parallelToolsEnabled": true,
"emailOutputEnabled": true,
"questionsToolEnabled": true,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": [
"<string>"
],
"datasetIds": [
"<string>"
],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"subagentsEnabled": true
}
'import requests
url = "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings"
payload = {
"orgId": "<string>",
"hideExampleConnectors": True,
"paradigmParams": {
"webSearchEnabled": True,
"sqlEnabled": True,
"ontologyEnabled": True,
"pythonEnabled": True,
"powerbiEnabled": True,
"googleDriveEnabled": True,
"formEditorEnabled": True,
"tableauEnabled": True,
"fileUploadEnabled": True,
"multipleConnectorMode": True,
"playbookToolsEnabled": True,
"microsoft365Enabled": True,
"bashEnabled": True,
"javascriptEnabled": True,
"modelSwitchingEnabled": True,
"feedExplorerEnabled": True,
"feedPostEnabled": True,
"feedCommentEnabled": True,
"feedEngageEnabled": True,
"compactionDisabled": True,
"gmailEnabled": True,
"chatHistorySearchEnabled": True,
"googleCalendarEnabled": True,
"parallelToolsEnabled": True,
"emailOutputEnabled": True,
"questionsToolEnabled": True,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": ["<string>"],
"datasetIds": ["<string>"],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"trainingMode": True,
"dashboardsEnabled": True,
"methodologyEnabled": True,
"feedEnabled": True,
"observabilityEnabled": True,
"notificationsEnabled": True,
"fastModeEnabled": True,
"maxThinkingEnabled": True,
"tracesEnabled": True,
"sandboxObservabilityEnabled": True,
"dataAppsEnabled": True,
"toolRestrictions": {
"webSearchEnabled": True,
"sqlEnabled": True,
"ontologyEnabled": True,
"pythonEnabled": True,
"powerbiEnabled": True,
"googleDriveEnabled": True,
"formEditorEnabled": True,
"tableauEnabled": True,
"fileUploadEnabled": True,
"multipleConnectorMode": True,
"playbookToolsEnabled": True,
"microsoft365Enabled": True,
"bashEnabled": True,
"javascriptEnabled": True,
"modelSwitchingEnabled": True,
"feedExplorerEnabled": True,
"feedPostEnabled": True,
"feedCommentEnabled": True,
"feedEngageEnabled": True,
"compactionDisabled": True,
"gmailEnabled": True,
"chatHistorySearchEnabled": True,
"googleCalendarEnabled": True,
"parallelToolsEnabled": True,
"emailOutputEnabled": True,
"questionsToolEnabled": True,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": ["<string>"],
"datasetIds": ["<string>"],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"subagentsEnabled": True
}
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"tql_api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
tql_api_key: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
orgId: '<string>',
hideExampleConnectors: true,
paradigmParams: {
webSearchEnabled: true,
sqlEnabled: true,
ontologyEnabled: true,
pythonEnabled: true,
powerbiEnabled: true,
googleDriveEnabled: true,
formEditorEnabled: true,
tableauEnabled: true,
fileUploadEnabled: true,
multipleConnectorMode: true,
playbookToolsEnabled: true,
microsoft365Enabled: true,
bashEnabled: true,
javascriptEnabled: true,
modelSwitchingEnabled: true,
feedExplorerEnabled: true,
feedPostEnabled: true,
feedCommentEnabled: true,
feedEngageEnabled: true,
compactionDisabled: true,
gmailEnabled: true,
chatHistorySearchEnabled: true,
googleCalendarEnabled: true,
parallelToolsEnabled: true,
emailOutputEnabled: true,
questionsToolEnabled: true,
powerbiSelections: [
{
workspaceId: '<string>',
reportIds: ['<string>'],
datasetIds: ['<string>'],
workspaceName: '<string>',
connectorId: 123
}
],
datasetId: '<string>'
},
trainingMode: true,
dashboardsEnabled: true,
methodologyEnabled: true,
feedEnabled: true,
observabilityEnabled: true,
notificationsEnabled: true,
fastModeEnabled: true,
maxThinkingEnabled: true,
tracesEnabled: true,
sandboxObservabilityEnabled: true,
dataAppsEnabled: true,
toolRestrictions: {
webSearchEnabled: true,
sqlEnabled: true,
ontologyEnabled: true,
pythonEnabled: true,
powerbiEnabled: true,
googleDriveEnabled: true,
formEditorEnabled: true,
tableauEnabled: true,
fileUploadEnabled: true,
multipleConnectorMode: true,
playbookToolsEnabled: true,
microsoft365Enabled: true,
bashEnabled: true,
javascriptEnabled: true,
modelSwitchingEnabled: true,
feedExplorerEnabled: true,
feedPostEnabled: true,
feedCommentEnabled: true,
feedEngageEnabled: true,
compactionDisabled: true,
gmailEnabled: true,
chatHistorySearchEnabled: true,
googleCalendarEnabled: true,
parallelToolsEnabled: true,
emailOutputEnabled: true,
questionsToolEnabled: true,
powerbiSelections: [
{
workspaceId: '<string>',
reportIds: ['<string>'],
datasetIds: ['<string>'],
workspaceName: '<string>',
connectorId: 123
}
],
datasetId: '<string>'
},
subagentsEnabled: true
})
};
fetch('https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orgId' => '<string>',
'hideExampleConnectors' => true,
'paradigmParams' => [
'webSearchEnabled' => true,
'sqlEnabled' => true,
'ontologyEnabled' => true,
'pythonEnabled' => true,
'powerbiEnabled' => true,
'googleDriveEnabled' => true,
'formEditorEnabled' => true,
'tableauEnabled' => true,
'fileUploadEnabled' => true,
'multipleConnectorMode' => true,
'playbookToolsEnabled' => true,
'microsoft365Enabled' => true,
'bashEnabled' => true,
'javascriptEnabled' => true,
'modelSwitchingEnabled' => true,
'feedExplorerEnabled' => true,
'feedPostEnabled' => true,
'feedCommentEnabled' => true,
'feedEngageEnabled' => true,
'compactionDisabled' => true,
'gmailEnabled' => true,
'chatHistorySearchEnabled' => true,
'googleCalendarEnabled' => true,
'parallelToolsEnabled' => true,
'emailOutputEnabled' => true,
'questionsToolEnabled' => true,
'powerbiSelections' => [
[
'workspaceId' => '<string>',
'reportIds' => [
'<string>'
],
'datasetIds' => [
'<string>'
],
'workspaceName' => '<string>',
'connectorId' => 123
]
],
'datasetId' => '<string>'
],
'trainingMode' => true,
'dashboardsEnabled' => true,
'methodologyEnabled' => true,
'feedEnabled' => true,
'observabilityEnabled' => true,
'notificationsEnabled' => true,
'fastModeEnabled' => true,
'maxThinkingEnabled' => true,
'tracesEnabled' => true,
'sandboxObservabilityEnabled' => true,
'dataAppsEnabled' => true,
'toolRestrictions' => [
'webSearchEnabled' => true,
'sqlEnabled' => true,
'ontologyEnabled' => true,
'pythonEnabled' => true,
'powerbiEnabled' => true,
'googleDriveEnabled' => true,
'formEditorEnabled' => true,
'tableauEnabled' => true,
'fileUploadEnabled' => true,
'multipleConnectorMode' => true,
'playbookToolsEnabled' => true,
'microsoft365Enabled' => true,
'bashEnabled' => true,
'javascriptEnabled' => true,
'modelSwitchingEnabled' => true,
'feedExplorerEnabled' => true,
'feedPostEnabled' => true,
'feedCommentEnabled' => true,
'feedEngageEnabled' => true,
'compactionDisabled' => true,
'gmailEnabled' => true,
'chatHistorySearchEnabled' => true,
'googleCalendarEnabled' => true,
'parallelToolsEnabled' => true,
'emailOutputEnabled' => true,
'questionsToolEnabled' => true,
'powerbiSelections' => [
[
'workspaceId' => '<string>',
'reportIds' => [
'<string>'
],
'datasetIds' => [
'<string>'
],
'workspaceName' => '<string>',
'connectorId' => 123
]
],
'datasetId' => '<string>'
],
'subagentsEnabled' => true
]),
CURLOPT_HTTPHEADER => [
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json",
"tql_api_key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings"
payload := strings.NewReader("{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("tql_api_key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("tql_api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["tql_api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}"
response = http.request(request)
puts response.read_body{}{
"message": "<string>",
"details": [
{
"type": "<string>",
"value": "<string>",
"debug": {}
}
]
}Update Organization Settings
import { Textql } from "@textql/sdk";
const textql = new Textql({
apiKey: process.env["TEXTQL_API_KEY"] ?? "",
});
async function run() {
const result = await textql.settingsService.settingsServiceUpdateOrganizationSettings({
body: {},
});
console.log(result);
}
run();curl --request POST \
--url https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--header 'tql_api_key: <api-key>' \
--data '
{
"orgId": "<string>",
"hideExampleConnectors": true,
"paradigmParams": {
"webSearchEnabled": true,
"sqlEnabled": true,
"ontologyEnabled": true,
"pythonEnabled": true,
"powerbiEnabled": true,
"googleDriveEnabled": true,
"formEditorEnabled": true,
"tableauEnabled": true,
"fileUploadEnabled": true,
"multipleConnectorMode": true,
"playbookToolsEnabled": true,
"microsoft365Enabled": true,
"bashEnabled": true,
"javascriptEnabled": true,
"modelSwitchingEnabled": true,
"feedExplorerEnabled": true,
"feedPostEnabled": true,
"feedCommentEnabled": true,
"feedEngageEnabled": true,
"compactionDisabled": true,
"gmailEnabled": true,
"chatHistorySearchEnabled": true,
"googleCalendarEnabled": true,
"parallelToolsEnabled": true,
"emailOutputEnabled": true,
"questionsToolEnabled": true,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": [
"<string>"
],
"datasetIds": [
"<string>"
],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"trainingMode": true,
"dashboardsEnabled": true,
"methodologyEnabled": true,
"feedEnabled": true,
"observabilityEnabled": true,
"notificationsEnabled": true,
"fastModeEnabled": true,
"maxThinkingEnabled": true,
"tracesEnabled": true,
"sandboxObservabilityEnabled": true,
"dataAppsEnabled": true,
"toolRestrictions": {
"webSearchEnabled": true,
"sqlEnabled": true,
"ontologyEnabled": true,
"pythonEnabled": true,
"powerbiEnabled": true,
"googleDriveEnabled": true,
"formEditorEnabled": true,
"tableauEnabled": true,
"fileUploadEnabled": true,
"multipleConnectorMode": true,
"playbookToolsEnabled": true,
"microsoft365Enabled": true,
"bashEnabled": true,
"javascriptEnabled": true,
"modelSwitchingEnabled": true,
"feedExplorerEnabled": true,
"feedPostEnabled": true,
"feedCommentEnabled": true,
"feedEngageEnabled": true,
"compactionDisabled": true,
"gmailEnabled": true,
"chatHistorySearchEnabled": true,
"googleCalendarEnabled": true,
"parallelToolsEnabled": true,
"emailOutputEnabled": true,
"questionsToolEnabled": true,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": [
"<string>"
],
"datasetIds": [
"<string>"
],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"subagentsEnabled": true
}
'import requests
url = "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings"
payload = {
"orgId": "<string>",
"hideExampleConnectors": True,
"paradigmParams": {
"webSearchEnabled": True,
"sqlEnabled": True,
"ontologyEnabled": True,
"pythonEnabled": True,
"powerbiEnabled": True,
"googleDriveEnabled": True,
"formEditorEnabled": True,
"tableauEnabled": True,
"fileUploadEnabled": True,
"multipleConnectorMode": True,
"playbookToolsEnabled": True,
"microsoft365Enabled": True,
"bashEnabled": True,
"javascriptEnabled": True,
"modelSwitchingEnabled": True,
"feedExplorerEnabled": True,
"feedPostEnabled": True,
"feedCommentEnabled": True,
"feedEngageEnabled": True,
"compactionDisabled": True,
"gmailEnabled": True,
"chatHistorySearchEnabled": True,
"googleCalendarEnabled": True,
"parallelToolsEnabled": True,
"emailOutputEnabled": True,
"questionsToolEnabled": True,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": ["<string>"],
"datasetIds": ["<string>"],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"trainingMode": True,
"dashboardsEnabled": True,
"methodologyEnabled": True,
"feedEnabled": True,
"observabilityEnabled": True,
"notificationsEnabled": True,
"fastModeEnabled": True,
"maxThinkingEnabled": True,
"tracesEnabled": True,
"sandboxObservabilityEnabled": True,
"dataAppsEnabled": True,
"toolRestrictions": {
"webSearchEnabled": True,
"sqlEnabled": True,
"ontologyEnabled": True,
"pythonEnabled": True,
"powerbiEnabled": True,
"googleDriveEnabled": True,
"formEditorEnabled": True,
"tableauEnabled": True,
"fileUploadEnabled": True,
"multipleConnectorMode": True,
"playbookToolsEnabled": True,
"microsoft365Enabled": True,
"bashEnabled": True,
"javascriptEnabled": True,
"modelSwitchingEnabled": True,
"feedExplorerEnabled": True,
"feedPostEnabled": True,
"feedCommentEnabled": True,
"feedEngageEnabled": True,
"compactionDisabled": True,
"gmailEnabled": True,
"chatHistorySearchEnabled": True,
"googleCalendarEnabled": True,
"parallelToolsEnabled": True,
"emailOutputEnabled": True,
"questionsToolEnabled": True,
"powerbiSelections": [
{
"workspaceId": "<string>",
"reportIds": ["<string>"],
"datasetIds": ["<string>"],
"workspaceName": "<string>",
"connectorId": 123
}
],
"datasetId": "<string>"
},
"subagentsEnabled": True
}
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"tql_api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
tql_api_key: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
orgId: '<string>',
hideExampleConnectors: true,
paradigmParams: {
webSearchEnabled: true,
sqlEnabled: true,
ontologyEnabled: true,
pythonEnabled: true,
powerbiEnabled: true,
googleDriveEnabled: true,
formEditorEnabled: true,
tableauEnabled: true,
fileUploadEnabled: true,
multipleConnectorMode: true,
playbookToolsEnabled: true,
microsoft365Enabled: true,
bashEnabled: true,
javascriptEnabled: true,
modelSwitchingEnabled: true,
feedExplorerEnabled: true,
feedPostEnabled: true,
feedCommentEnabled: true,
feedEngageEnabled: true,
compactionDisabled: true,
gmailEnabled: true,
chatHistorySearchEnabled: true,
googleCalendarEnabled: true,
parallelToolsEnabled: true,
emailOutputEnabled: true,
questionsToolEnabled: true,
powerbiSelections: [
{
workspaceId: '<string>',
reportIds: ['<string>'],
datasetIds: ['<string>'],
workspaceName: '<string>',
connectorId: 123
}
],
datasetId: '<string>'
},
trainingMode: true,
dashboardsEnabled: true,
methodologyEnabled: true,
feedEnabled: true,
observabilityEnabled: true,
notificationsEnabled: true,
fastModeEnabled: true,
maxThinkingEnabled: true,
tracesEnabled: true,
sandboxObservabilityEnabled: true,
dataAppsEnabled: true,
toolRestrictions: {
webSearchEnabled: true,
sqlEnabled: true,
ontologyEnabled: true,
pythonEnabled: true,
powerbiEnabled: true,
googleDriveEnabled: true,
formEditorEnabled: true,
tableauEnabled: true,
fileUploadEnabled: true,
multipleConnectorMode: true,
playbookToolsEnabled: true,
microsoft365Enabled: true,
bashEnabled: true,
javascriptEnabled: true,
modelSwitchingEnabled: true,
feedExplorerEnabled: true,
feedPostEnabled: true,
feedCommentEnabled: true,
feedEngageEnabled: true,
compactionDisabled: true,
gmailEnabled: true,
chatHistorySearchEnabled: true,
googleCalendarEnabled: true,
parallelToolsEnabled: true,
emailOutputEnabled: true,
questionsToolEnabled: true,
powerbiSelections: [
{
workspaceId: '<string>',
reportIds: ['<string>'],
datasetIds: ['<string>'],
workspaceName: '<string>',
connectorId: 123
}
],
datasetId: '<string>'
},
subagentsEnabled: true
})
};
fetch('https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orgId' => '<string>',
'hideExampleConnectors' => true,
'paradigmParams' => [
'webSearchEnabled' => true,
'sqlEnabled' => true,
'ontologyEnabled' => true,
'pythonEnabled' => true,
'powerbiEnabled' => true,
'googleDriveEnabled' => true,
'formEditorEnabled' => true,
'tableauEnabled' => true,
'fileUploadEnabled' => true,
'multipleConnectorMode' => true,
'playbookToolsEnabled' => true,
'microsoft365Enabled' => true,
'bashEnabled' => true,
'javascriptEnabled' => true,
'modelSwitchingEnabled' => true,
'feedExplorerEnabled' => true,
'feedPostEnabled' => true,
'feedCommentEnabled' => true,
'feedEngageEnabled' => true,
'compactionDisabled' => true,
'gmailEnabled' => true,
'chatHistorySearchEnabled' => true,
'googleCalendarEnabled' => true,
'parallelToolsEnabled' => true,
'emailOutputEnabled' => true,
'questionsToolEnabled' => true,
'powerbiSelections' => [
[
'workspaceId' => '<string>',
'reportIds' => [
'<string>'
],
'datasetIds' => [
'<string>'
],
'workspaceName' => '<string>',
'connectorId' => 123
]
],
'datasetId' => '<string>'
],
'trainingMode' => true,
'dashboardsEnabled' => true,
'methodologyEnabled' => true,
'feedEnabled' => true,
'observabilityEnabled' => true,
'notificationsEnabled' => true,
'fastModeEnabled' => true,
'maxThinkingEnabled' => true,
'tracesEnabled' => true,
'sandboxObservabilityEnabled' => true,
'dataAppsEnabled' => true,
'toolRestrictions' => [
'webSearchEnabled' => true,
'sqlEnabled' => true,
'ontologyEnabled' => true,
'pythonEnabled' => true,
'powerbiEnabled' => true,
'googleDriveEnabled' => true,
'formEditorEnabled' => true,
'tableauEnabled' => true,
'fileUploadEnabled' => true,
'multipleConnectorMode' => true,
'playbookToolsEnabled' => true,
'microsoft365Enabled' => true,
'bashEnabled' => true,
'javascriptEnabled' => true,
'modelSwitchingEnabled' => true,
'feedExplorerEnabled' => true,
'feedPostEnabled' => true,
'feedCommentEnabled' => true,
'feedEngageEnabled' => true,
'compactionDisabled' => true,
'gmailEnabled' => true,
'chatHistorySearchEnabled' => true,
'googleCalendarEnabled' => true,
'parallelToolsEnabled' => true,
'emailOutputEnabled' => true,
'questionsToolEnabled' => true,
'powerbiSelections' => [
[
'workspaceId' => '<string>',
'reportIds' => [
'<string>'
],
'datasetIds' => [
'<string>'
],
'workspaceName' => '<string>',
'connectorId' => 123
]
],
'datasetId' => '<string>'
],
'subagentsEnabled' => true
]),
CURLOPT_HTTPHEADER => [
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json",
"tql_api_key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings"
payload := strings.NewReader("{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("tql_api_key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("tql_api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.textql.com/textql.rpc.public.settings.SettingsService/UpdateOrganizationSettings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["tql_api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orgId\": \"<string>\",\n \"hideExampleConnectors\": true,\n \"paradigmParams\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"trainingMode\": true,\n \"dashboardsEnabled\": true,\n \"methodologyEnabled\": true,\n \"feedEnabled\": true,\n \"observabilityEnabled\": true,\n \"notificationsEnabled\": true,\n \"fastModeEnabled\": true,\n \"maxThinkingEnabled\": true,\n \"tracesEnabled\": true,\n \"sandboxObservabilityEnabled\": true,\n \"dataAppsEnabled\": true,\n \"toolRestrictions\": {\n \"webSearchEnabled\": true,\n \"sqlEnabled\": true,\n \"ontologyEnabled\": true,\n \"pythonEnabled\": true,\n \"powerbiEnabled\": true,\n \"googleDriveEnabled\": true,\n \"formEditorEnabled\": true,\n \"tableauEnabled\": true,\n \"fileUploadEnabled\": true,\n \"multipleConnectorMode\": true,\n \"playbookToolsEnabled\": true,\n \"microsoft365Enabled\": true,\n \"bashEnabled\": true,\n \"javascriptEnabled\": true,\n \"modelSwitchingEnabled\": true,\n \"feedExplorerEnabled\": true,\n \"feedPostEnabled\": true,\n \"feedCommentEnabled\": true,\n \"feedEngageEnabled\": true,\n \"compactionDisabled\": true,\n \"gmailEnabled\": true,\n \"chatHistorySearchEnabled\": true,\n \"googleCalendarEnabled\": true,\n \"parallelToolsEnabled\": true,\n \"emailOutputEnabled\": true,\n \"questionsToolEnabled\": true,\n \"powerbiSelections\": [\n {\n \"workspaceId\": \"<string>\",\n \"reportIds\": [\n \"<string>\"\n ],\n \"datasetIds\": [\n \"<string>\"\n ],\n \"workspaceName\": \"<string>\",\n \"connectorId\": 123\n }\n ],\n \"datasetId\": \"<string>\"\n },\n \"subagentsEnabled\": true\n}"
response = http.request(request)
puts response.read_body{}{
"message": "<string>",
"details": [
{
"type": "<string>",
"value": "<string>",
"debug": {}
}
]
}Authorizations
Headers
Define the version of the Connect protocol
1 Define the timeout, in ms
Body
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Show child attributes
Show child attributes
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Show child attributes
Show child attributes
Wrapper message for bool.
The JSON representation for BoolValue is JSON true and false.
Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.
Response
Success
The response is of type UpdateOrganizationSettingsResponse · object.