zone.stratos.admin.listAdmins

lexicon.northsky.app

Documentation

List everyone holding admin access. Requires admin authorization.

main query

List everyone holding admin access. Requires admin authorization.

Output

Encodingapplication/json
admins array Required

No description available.

viewer stringdid Required

The DID of the requesting admin.

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)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "admins",
        "viewer"
      ],
      "properties": {
        "admins": {
          "type": "array",
          "items": {
            "ref": "#admin",
            "type": "ref"
          }
        },
        "viewer": {
          "type": "string",
          "format": "did",
          "description": "The DID of the requesting admin."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "List everyone holding admin access. Requires admin authorization."
}
admin object

No description available.

Properties

addedAt string datetime Optional

When access was granted. Absent for config admins.

addedBy string did Optional

Who granted access. Absent for config admins.

did string did Required

A decentralized identifier (DID).

source string Required

Where the grant comes from. Config admins cannot be revoked through the API.

Known values: config, database
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "source"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "source": {
      "type": "string",
      "description": "Where the grant comes from. Config admins cannot be revoked through the API.",
      "knownValues": [
        "config",
        "database"
      ]
    },
    "addedAt": {
      "type": "string",
      "format": "datetime",
      "description": "When access was granted. Absent for config admins."
    },
    "addedBy": {
      "type": "string",
      "format": "did",
      "description": "Who granted access. Absent for config admins."
    }
  }
}

Lexicon Garden

@