Reset a user account password using a token.
Input
Encoding
application/jsonpassword
string
Required
No description provided.
token
string
Required
No description provided.
Errors
ExpiredToken
InvalidToken
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": [
"token",
"password"
],
"properties": {
"token": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ExpiredToken"
},
{
"name": "InvalidToken"
}
],
"description": "Reset a user account password using a token."
}