from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Delete a user and all associated resources
client.users.delete('[email protected]'){
"code": 123,
"error": "<string>",
"msg": "<string>"
}Delete a user by identifier and cascade delete all associated resources (Space, Session, Disk, Skill)
from acontext import AcontextClient
client = AcontextClient(api_key='sk_project_token')
# Delete a user and all associated resources
client.users.delete('[email protected]'){
"code": 123,
"error": "<string>",
"msg": "<string>"
}