games.gamesgamesgamesgames.createList

gamesgamesgamesgames.games

Documentation

Create a new list for the authenticated user.

main procedure

Create a new list for the authenticated user.

Input

Encodingapplication/json
description string Optional

Optional description of the list.

maxLength: 500 bytes
name string Required

The name of the list.

maxLength: 100 bytes

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).

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"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 100,
          "description": "The name of the list."
        },
        "description": {
          "type": "string",
          "maxLength": 500,
          "description": "Optional description of the list."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "cid"
      ],
      "properties": {
        "cid": {
          "type": "string"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Create a new list for the authenticated user."
}

Lexicon Garden

@