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

Authorization
string
header
required

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.