Authorizations
Project Bearer token (e.g., "Bearer sk-ac-xxxx")
Path Parameters
Space ID
Body
application/json
UpdateConfigs payload
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Update space configs
client.spaces.update_configs(
space_id='space-uuid',
configs={"name": "Updated Name", "description": "New description"}
){
"code": 123,
"error": "<string>",
"msg": "<string>"
}Update the configurations of a space by its ID
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Update space configs
client.spaces.update_configs(
space_id='space-uuid',
configs={"name": "Updated Name", "description": "New description"}
){
"code": 123,
"error": "<string>",
"msg": "<string>"
}Project Bearer token (e.g., "Bearer sk-ac-xxxx")
Space ID
UpdateConfigs payload