Authorizations
Project Bearer token (e.g., "Bearer sk-ac-xxxx")
Path Parameters
Space ID
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Get space configs
space = client.spaces.get_configs(space_id='space-uuid')
print(space.configs){
"code": 123,
"error": "<string>",
"msg": "<string>",
"data": {
"configs": {},
"created_at": "<string>",
"id": "<string>",
"project_id": "<string>",
"updated_at": "<string>"
}
}Retrieve the configurations of a space by its ID
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Get space configs
space = client.spaces.get_configs(space_id='space-uuid')
print(space.configs){
"code": 123,
"error": "<string>",
"msg": "<string>",
"data": {
"configs": {},
"created_at": "<string>",
"id": "<string>",
"project_id": "<string>",
"updated_at": "<string>"
}
}Project Bearer token (e.g., "Bearer sk-ac-xxxx")
Space ID