API Reference
- GETHealth check
- GETGet runtime configuration
- GETGet VSCode URL
- GETGet runtime hosts
- POSTSubmit feedback
- GETList files
- GETGet file content
- GETDownload workspace as zip
- GETGet git changes
- GETGet git diff
- GETGet trajectory
- GETSecurity analyzer API (GET)
- PUTSecurity analyzer API (PUT)
- POSTSecurity analyzer API (POST)
- DELSecurity analyzer API (DELETE)
- GETSearch conversations
- POSTCreate new conversation
- GETGet conversation
- DELDelete conversation
- PATCHUpdate conversation
- GETGet user repositories
- GETGet user info
- GETSearch repositories
- GETGet suggested tasks
- GETGet settings
- POSTStore settings
- POSTReset settings (Deprecated)deprecated
- POSTUnset settings tokens
- GETGet models
- GETGet agents
- GETGet security analyzers
- GETGet config
API Reference
Store settings
Store user settings
POST
/
api
/
settings
curl --request POST \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key": "<string>",
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens": {}
}'
{
"message": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Settings stored successfully
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key": "<string>",
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens": {}
}'
{
"message": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.