from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Delete a space
client.spaces.delete(space_id='space-uuid'){
"code": 123,
"error": "<string>",
"msg": "<string>"
}Delete a space by its ID
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Delete a space
client.spaces.delete(space_id='space-uuid'){
"code": 123,
"error": "<string>",
"msg": "<string>"
}