uk.skyblur.post.store

lexicon.store View official

Documentation

Stores a restricted post in the Skyblur AppView.

main procedure

Stores a restricted post in the Skyblur AppView.

Input

Encodingapplication/json
additional string Optional

No description available.

maxLength: 100000 bytesmaxGraphemes: 10000 graphemes
text string Required

No description available.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
uri stringat-uri Required

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

visibility string Required

No description available.

Output

Encodingapplication/json
message string Optional

No description available.

success boolean 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": [
        "text",
        "uri",
        "visibility"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "text": {
          "type": "string",
          "maxLength": 3000,
          "maxGraphemes": 300
        },
        "additional": {
          "type": "string",
          "maxLength": 100000,
          "maxGraphemes": 10000
        },
        "visibility": {
          "enum": [
            "followers",
            "following",
            "mutual"
          ],
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "success"
      ],
      "properties": {
        "message": {
          "type": "string"
        },
        "success": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Stores a restricted post in the Skyblur AppView."
}

Lexicon Garden

@