Update an account's email.
Input
Encoding
application/jsonemail
string
Required
No description available.
emailAuthFactor
boolean
Optional
No description available.
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
Requests are sent directly from your browser. Some servers may block requests due to CORS.
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."
}