Look an account up by handle or DID, to find out who owns it. Matches deleted accounts too. Operators only.
Parameters
Output
Encoding
application/jsonaccounts
array
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": [
"accounts"
],
"properties": {
"accounts": {
"type": "array",
"items": {
"ref": "rip.pds.admin.defs#accountView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"description": "A DID, or any part of a handle."
}
}
},
"description": "Look an account up by handle or DID, to find out who owns it. Matches deleted accounts too. Operators only."
}