Issue a new password for any live account on this server, whoever holds it. Operators only.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Output
Encoding
application/jsonaccount
refrip.pds.admin.defs#accountView
Required
No description available.
password
string
Required
Shown once.
pdsEndpoint
stringuri
Required
A valid URI.
Errors
NotAnOperator
The calling account does not operate this server. AccountNotFound
No live account with that DID. ResetFailed
The PDS refused the change. 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": "NotAnOperator",
"description": "The calling account does not operate this server."
},
{
"name": "AccountNotFound",
"description": "No live account with that DID."
},
{
"name": "ResetFailed",
"description": "The PDS refused the change."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"account",
"password",
"pdsEndpoint"
],
"properties": {
"account": {
"ref": "rip.pds.admin.defs#accountView",
"type": "ref"
},
"password": {
"type": "string",
"description": "Shown once."
},
"pdsEndpoint": {
"type": "string",
"format": "uri"
}
}
},
"encoding": "application/json"
},
"description": "Issue a new password for any live account on this server, whoever holds it. Operators only."
}