rsvp.atmo.notifyOfUpdate

atmo.rsvp

Documentation

Notify of a record change for immediate indexing. Fetches the record from the user's PDS and indexes (or deletes) it.

main procedure

Notify of a record change for immediate indexing. Fetches the record from the user's PDS and indexes (or deletes) it.

Input

Encodingapplication/json
uri stringat-uri Optional

Single AT URI to fetch and index

uris array Optional

Batch of AT URIs to fetch and index (max 25)

maxLength: 25 items

Output

Encodingapplication/json
deleted integer Required

Number of records deleted (not found on PDS)

errors array Optional

Errors for individual URIs that could not be processed

indexed integer Required

Number of records created or updated

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",
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "Single AT URI to fetch and index"
        },
        "uris": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "at-uri"
          },
          "maxLength": 25,
          "description": "Batch of AT URIs to fetch and index (max 25)"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "indexed",
        "deleted"
      ],
      "properties": {
        "errors": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Errors for individual URIs that could not be processed"
        },
        "deleted": {
          "type": "integer",
          "description": "Number of records deleted (not found on PDS)"
        },
        "indexed": {
          "type": "integer",
          "description": "Number of records created or updated"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Notify of a record change for immediate indexing. Fetches the record from the user's PDS and indexes (or deletes) it."
}

Lexicon Garden

@