curl --request GET \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>'
{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key_set": true,
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens_set": {}
}
Get user settings
curl --request GET \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>'
{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key_set": true,
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens_set": {}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User settings
The response is of type object
.
Was this page helpful?