One person's accounts and their whole recorded history on this server, including accounts that are already gone. Operators only.
Parameters
Output
Encoding
application/jsonaccounts
array
Required
No description available.
history
array
Required
Creations, deletions, takedowns, labels and handle changes across all of their accounts, newest first.
owner
refrip.pds.admin.defs#ownerView
Required
No description available.
Errors
NotAnOperator
The calling account does not operate this server. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotAnOperator",
"description": "The calling account does not operate this server."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"owner",
"accounts",
"history"
],
"properties": {
"owner": {
"ref": "rip.pds.admin.defs#ownerView",
"type": "ref"
},
"history": {
"type": "array",
"items": {
"ref": "rip.pds.admin.defs#eventView",
"type": "ref"
},
"description": "Creations, deletions, takedowns, labels and handle changes across all of their accounts, newest first."
},
"accounts": {
"type": "array",
"items": {
"ref": "rip.pds.admin.defs#accountView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"historyLimit": {
"type": "integer",
"default": 200,
"maximum": 500,
"minimum": 1
}
}
},
"description": "One person's accounts and their whole recorded history on this server, including accounts that are already gone. Operators only."
}