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