app.didpic.admin.getPushToken

lexicons.didpic.app

Documentation

Get a push token's detail and bound actors.

main query

Get a push token's detail and bound actors.

Parameters

token string Required

No description available.

Output

Encodingapplication/json
actors array Required

No description available.

token object 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://api.bsky.social)
Parameters
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "token",
        "actors"
      ],
      "properties": {
        "token": {
          "type": "object",
          "required": [
            "token",
            "platform",
            "firstRegisteredAt",
            "latestRegisteredAt",
            "accountCount"
          ],
          "properties": {
            "token": {
              "type": "string"
            },
            "platform": {
              "type": "string"
            },
            "accountCount": {
              "type": "integer"
            },
            "firstRegisteredAt": {
              "type": "string",
              "format": "datetime"
            },
            "latestRegisteredAt": {
              "type": "string",
              "format": "datetime"
            }
          }
        },
        "actors": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "did",
              "platform",
              "registeredAt"
            ],
            "properties": {
              "did": {
                "type": "string",
                "format": "did"
              },
              "handle": {
                "type": "string"
              },
              "platform": {
                "type": "string"
              },
              "avatarCid": {
                "type": "string"
              },
              "displayName": {
                "type": "string"
              },
              "registeredAt": {
                "type": "string",
                "format": "datetime"
              }
            }
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "token"
    ],
    "properties": {
      "token": {
        "type": "string"
      }
    }
  },
  "description": "Get a push token's detail and bound actors."
}

Lexicon Garden

@