Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.contact.sendNotification

bsky-lexicons.bsky.social

Documentation

main procedure

System endpoint to send notifications related to contact imports. Requires role authentication.

Input

Encodingapplication/json
from stringdid Required

The DID of who this notification comes from.

to stringdid Required

The DID of who this notification should go to.

Output

Encodingapplication/json
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": [
        "from",
        "to"
      ],
      "properties": {
        "to": {
          "type": "string",
          "format": "did",
          "description": "The DID of who this notification should go to."
        },
        "from": {
          "type": "string",
          "format": "did",
          "description": "The DID of who this notification comes from."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "properties": {}
    },
    "encoding": "application/json"
  },
  "description": "System endpoint to send notifications related to contact imports. Requires role authentication."
}

Lexicon Garden

@