rsvp.atmo.space.deleteRecord

atmo.rsvp

Documentation

Delete a record from a space. Callers can delete their own records; the space owner can delete any record (via a separate admin path).

main procedure

Delete a record from a space. Callers can delete their own records; the space owner can delete any record (via a separate admin path).

Input

Encodingapplication/json
collection stringnsid Required

A namespaced identifier (e.g., app.bsky.feed.post).

rkey string Required

No description available.

spaceUri stringat-uri Required

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

Output

Encodingapplication/json
ok boolean Required

No description available.

Errors

NotFound
Forbidden
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": [
        "spaceUri",
        "collection",
        "rkey"
      ],
      "properties": {
        "rkey": {
          "type": "string"
        },
        "spaceUri": {
          "type": "string",
          "format": "at-uri"
        },
        "collection": {
          "type": "string",
          "format": "nsid"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "NotFound"
    },
    {
      "name": "Forbidden"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "ok"
      ],
      "properties": {
        "ok": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Delete a record from a space. Callers can delete their own records; the space owner can delete any record (via a separate admin path)."
}

Lexicon Garden

@