app.standard-reader.createList

standard-reader.app

Documentation

Create a new publication list.

main procedure

Create a new publication list.

Input

Encodingapplication/json
description string Optional

No description available.

name string Required

No description available.

publications array Required

No description available.

Output

Encodingapplication/json
rkey string Required

No description available.

uri stringat-uri Required

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

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": [
        "name",
        "publications"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "publications": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "at-uri"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "rkey",
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "rkey": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Create a new publication list."
}

Lexicon Garden

@