so.sprk.notification.registerPush

sprk.so

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
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"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Register to receive push notifications, via a specified service, for the requesting account. Requires auth."
}

Lexicon Garden

@