app.bivri.actor.updateProfile

lexicons.bivri.app

Documentation

main procedure

No description available.

Input

Encodingapplication/json
avatar blob OptionalNullable

Blob reference for the new avatar. Send null to clear it; omit the field to leave it unchanged.

maxSize: 1.0 MB
banner blob OptionalNullable

Blob reference for the new banner. Send null to clear it; omit the field to leave it unchanged.

maxSize: 1.0 MB
bio string OptionalNullable

New profile description. Send null to clear it; omit the field to leave it unchanged.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
displayName string OptionalNullable

New display name. Send null to clear it; omit the field to leave it unchanged.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
links array OptionalNullable

Replacement set of external links. Send null to clear them; omit the field to leave them unchanged.

maxLength: 10 items

Output

Encodingapplication/json
cid string Required

No description available.

uri stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Errors

Unauthenticated
InvalidProfile
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",
      "nullable": [
        "displayName",
        "bio",
        "avatar",
        "banner",
        "links"
      ],
      "properties": {
        "bio": {
          "type": "string",
          "maxLength": 2560,
          "description": "New profile description. Send null to clear it; omit the field to leave it unchanged.",
          "maxGraphemes": 256
        },
        "links": {
          "type": "array",
          "items": {
            "ref": "app.bivri.actor.profile#link",
            "type": "ref"
          },
          "maxLength": 10,
          "description": "Replacement set of external links. Send null to clear them; omit the field to leave them unchanged."
        },
        "avatar": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg",
            "image/webp"
          ],
          "maxSize": 1000000,
          "description": "Blob reference for the new avatar. Send null to clear it; omit the field to leave it unchanged."
        },
        "banner": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg",
            "image/webp"
          ],
          "maxSize": 1000000,
          "description": "Blob reference for the new banner. Send null to clear it; omit the field to leave it unchanged."
        },
        "displayName": {
          "type": "string",
          "maxLength": 640,
          "description": "New display name. Send null to clear it; omit the field to leave it unchanged.",
          "maxGraphemes": 64
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "Unauthenticated"
    },
    {
      "name": "InvalidProfile"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "cid"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  }
}

Lexicon Garden

@