Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.contact.startPhoneVerification

bsky-lexicons.bsky.social

Documentation

main procedure

Starts a phone verification flow. The phone passed will receive a code via SMS that should be passed to `app.bsky.contact.verifyPhone`. Requires authentication.

Input

Encodingapplication/json
phone string Required

The phone number to receive the code via SMS.

Output

Encodingapplication/json

Errors

RateLimitExceeded
InvalidDid
InvalidPhone
InternalError
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": [
        "phone"
      ],
      "properties": {
        "phone": {
          "type": "string",
          "description": "The phone number to receive the code via SMS."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "RateLimitExceeded"
    },
    {
      "name": "InvalidDid"
    },
    {
      "name": "InvalidPhone"
    },
    {
      "name": "InternalError"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "properties": {}
    },
    "encoding": "application/json"
  },
  "description": "Starts a phone verification flow. The phone passed will receive a code via SMS that should be passed to `app.bsky.contact.verifyPhone`. Requires authentication."
}

Lexicon Garden

@