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

app.bsky.notification.unregisterPush

bsky-lexicons.bsky.social

Documentation

main procedure

The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth.

Input

Encodingapplication/json
appId string Required

No description provided.

platform string Required

No description provided.

serviceDid stringdid Required

A decentralized identifier (DID).

token string Required

No description provided.

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": [
        "serviceDid",
        "token",
        "platform",
        "appId"
      ],
      "properties": {
        "appId": {
          "type": "string"
        },
        "token": {
          "type": "string"
        },
        "platform": {
          "type": "string",
          "knownValues": [
            "ios",
            "android",
            "web"
          ]
        },
        "serviceDid": {
          "type": "string",
          "format": "did"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth."
}

Lexicon Garden

@