social.showcase.library.updateItem

lexicons.showcase.social

Documentation

Update an existing item. Requires authentication.

main procedure

Update an existing item. Requires authentication.

Input

Encodingapplication/json
category string Optional

No description available.

maxLength: 100 bytes
description string Optional

No description available.

maxLength: 3000 bytes
externalLink stringuri Optional

A valid URI.

maxLength: 2048 bytes
images array Optional

No description available.

maxLength: 6 items
metadata unknown Optional

No description available.

tags array Optional

No description available.

maxLength: 20 items
title string Optional

No description available.

maxLength: 300 bytes
uri stringat-uri Required

The AT-URI of the item

visibility string Optional

No description available.

maxLength: 10 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",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "The AT-URI of the item"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 64
          },
          "maxLength": 20
        },
        "title": {
          "type": "string",
          "maxLength": 300
        },
        "images": {
          "type": "array",
          "items": {
            "ref": "social.showcase.defs#itemImage",
            "type": "ref"
          },
          "maxLength": 6
        },
        "category": {
          "type": "string",
          "maxLength": 100
        },
        "metadata": {
          "type": "unknown"
        },
        "visibility": {
          "type": "string",
          "maxLength": 10,
          "knownValues": [
            "public",
            "unlisted",
            "private"
          ]
        },
        "description": {
          "type": "string",
          "maxLength": 3000
        },
        "externalLink": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "ref": "social.showcase.defs#itemView",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Update an existing item. Requires authentication."
}

Lexicon Garden

@