Skip to content

com.atproto.server.listAppPasswords

Lexicon Version: 1

Type: query

List all App Passwords.

Parameters: (None defined)

Output:

  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
passwordsArray of #appPassword
Possible Errors:
  • AccountTakedown

Type: object

Properties:

NameTypeReq’dDescriptionConstraints
namestring
createdAtstringFormat: datetime
privilegedboolean

{
"lexicon": 1,
"id": "com.atproto.server.listAppPasswords",
"defs": {
"main": {
"type": "query",
"description": "List all App Passwords.",
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": [
"passwords"
],
"properties": {
"passwords": {
"type": "array",
"items": {
"type": "ref",
"ref": "#appPassword"
}
}
}
}
},
"errors": [
{
"name": "AccountTakedown"
}
]
},
"appPassword": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"privileged": {
"type": "boolean"
}
}
}
}
}