app.ocho.auth.updateEmail

ocho-lexicons.ocho.app

Documentation

Update an account's email.

main procedure

Update an account's email.

Input

Encodingapplication/json
email 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.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
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."
}

Lexicon Garden

@