buzz.bookhive.updateList

bookhive.buzz

Documentation

Update an existing book list.

main procedure

Update an existing book list.

Input

Encodingapplication/json
description string Optional

New description

maxLength: 500 bytes
name string Optional

New name for the list

maxLength: 100 bytesminLength: 1 bytes
ordered boolean Optional

Whether the list is ordered

tags array Optional

New tags

uri string Required

AT-URI of the list to update

Output

Encodingapplication/json
cid string Required

No description available.

uri string Required

No description available.

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",
          "description": "AT-URI of the list to update"
        },
        "name": {
          "type": "string",
          "maxLength": 100,
          "minLength": 1,
          "description": "New name for the list"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 50
          },
          "description": "New tags"
        },
        "ordered": {
          "type": "boolean",
          "description": "Whether the list is ordered"
        },
        "description": {
          "type": "string",
          "maxLength": 500,
          "description": "New description"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "cid"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "uri": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Update an existing book list."
}

Lexicon Garden

@