app.bsky.contact.sendNotification

lexicon.store View official

Documentation

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

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

@