app.bsky.notification.registerPush

bsky-lexicons.bsky.social

Documentation

Register to receive push notifications, via a specified service, for the requesting account. Requires auth.

main procedure

Register to receive push notifications, via a specified service, for the requesting account. Requires auth.

Input

Encodingapplication/json
ageRestricted boolean Optional

Set to true when the actor is age restricted

appId string Required

No description available.

platform string Required

No description available.

serviceDid stringdid Required

A decentralized identifier (DID).

token string Required

No description available.

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"
        },
        "ageRestricted": {
          "type": "boolean",
          "description": "Set to true when the actor is age restricted"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Register to receive push notifications, via a specified service, for the requesting account. Requires auth."
}

Lexicon Garden

@