app.chronosky.schedule.deletePost

chronosky.app

Documentation

Delete a scheduled post. Only PENDING posts can be deleted.

main procedure

Delete a scheduled post. Only PENDING posts can be deleted.

Input

Encodingapplication/json
id string Required

Post ID to delete.

maxLength: 100 bytes

Output

Encodingapplication/json
success boolean Required

Deletion success flag.

Errors

PostNotFound
PostNotPending
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": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "maxLength": 100,
          "description": "Post ID to delete."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "PostNotFound"
    },
    {
      "name": "PostNotPending"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "success"
      ],
      "properties": {
        "success": {
          "type": "boolean",
          "const": true,
          "description": "Deletion success flag."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Delete a scheduled post. Only PENDING posts can be deleted."
}

Lexicon Garden

@