Delete a member from ozone team. Requires admin role.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Errors
MemberNotFound
The member being deleted does not exist CannotDeleteSelf
You can not delete yourself from the team Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "MemberNotFound",
"description": "The member being deleted does not exist"
},
{
"name": "CannotDeleteSelf",
"description": "You can not delete yourself from the team"
}
],
"description": "Delete a member from ozone team. Requires admin role."
}