Activate or deactivate an enrolled member. Requires admin authorization. Deactivation is reversible and preserves the member's boundaries.
Input
Encoding
application/jsonactive
boolean
Required
Whether the member's enrollment should be active.
did
stringdid
Required
The member to update.
Output
Encoding
application/jsonactive
boolean
Required
No description available.
did
stringdid
Required
A decentralized identifier (DID).
Errors
NotFound
The DID is not enrolled. 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",
"active"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The member to update."
},
"active": {
"type": "boolean",
"description": "Whether the member's enrollment should be active."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound",
"description": "The DID is not enrolled."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"did",
"active"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"active": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Activate or deactivate an enrolled member. Requires admin authorization. Deactivation is reversible and preserves the member's boundaries."
}