Create an App Password.
Input
Encoding
application/jsonname
string
Required
A short name for the App Password, to help distinguish them.
privileged
boolean
Optional
If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients.
Output
Encoding
application/jsonSchema#appPassword
Errors
AccountTakedown
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "A short name for the App Password, to help distinguish them."
},
"privileged": {
"type": "boolean",
"description": "If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AccountTakedown"
}
],
"output": {
"schema": {
"ref": "#appPassword",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Create an App Password."
}