Update an account's email.
Input
Encoding
application/jsonemail
string
Required
No description provided.
emailAuthFactor
boolean
Optional
No description provided.
token
string
Optional
Requires a token from com.atproto.sever.requestEmailUpdate if the account's email has been confirmed.
Errors
ExpiredToken
InvalidToken
TokenRequired
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": [
"email"
],
"properties": {
"email": {
"type": "string"
},
"token": {
"type": "string",
"description": "Requires a token from com.atproto.sever.requestEmailUpdate if the account's email has been confirmed."
},
"emailAuthFactor": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ExpiredToken"
},
{
"name": "InvalidToken"
},
{
"name": "TokenRequired"
}
],
"description": "Update an account's email."
}