Administrative action to update an account's handle.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
handle
stringhandle
Required
An AT Protocol handle (e.g., alice.bsky.social).
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": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"handle": {
"type": "string",
"format": "handle"
}
}
},
"encoding": "application/json"
},
"description": "Administrative action to update an account's handle."
}