social.showcase.profile.updateProfile

lexicons.showcase.social

Documentation

Update user profile. Requires authentication.

main procedure

Update user profile. Requires authentication.

Input

Encodingapplication/json
avatar blob Optional

No description available.

banner blob Optional

No description available.

bio string Optional

No description available.

maxLength: 256 bytes
displayName string Optional

No description available.

maxLength: 64 bytes
showcase array Optional

Featured showcase items

maxLength: 4 items
tags array Optional

No description available.

maxLength: 10 items
website stringuri Optional

A valid URI.

maxLength: 2048 bytes

Output

Encodingapplication/json
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",
      "properties": {
        "bio": {
          "type": "string",
          "maxLength": 256
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 64
          },
          "maxLength": 10
        },
        "avatar": {
          "type": "blob"
        },
        "banner": {
          "type": "blob"
        },
        "website": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048
        },
        "showcase": {
          "type": "array",
          "items": {
            "ref": "social.showcase.defs#showcaseItem",
            "type": "ref"
          },
          "maxLength": 4,
          "description": "Featured showcase items"
        },
        "displayName": {
          "type": "string",
          "maxLength": 64
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "ref": "social.showcase.defs#profileView",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Update user profile. Requires authentication."
}

Lexicon Garden

@