uk.skyblur.post.store

skyblur.uk

Documentation

Stores a restricted post in the Skyblur AppView. Auth required.

main procedure

Stores a restricted post in the Skyblur AppView. Auth required.

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

The URI must include the logged-in user's DID in the format at://did...

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",
          "description": "The URI must include the logged-in user's DID in the format at://did..."
        },
        "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. Auth required."
}

Lexicon Garden

@