com.atproto.identity.updateHandle
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: procedure
Updates the current account’s handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.
Parameters: (None defined)
Input:
- Encoding:
application/json - Schema:
Schema Type: object
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
handle | string | ✅ | The new handle. | Format: handle |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "com.atproto.identity.updateHandle", "defs": { "main": { "type": "procedure", "description": "Updates the current account's handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.", "input": { "encoding": "application/json", "schema": { "type": "object", "required": [ "handle" ], "properties": { "handle": { "type": "string", "format": "handle", "description": "The new handle." } } } } } }}