zone.stratos.identity.resolveEnrollments

lexicon.northsky.app

Documentation

Resolve enrollment boundaries for a DID. Returns the boundary domains the user is enrolled in.

main query

Resolve enrollment boundaries for a DID. Returns the boundary domains the user is enrolled in.

Parameters

did string did Required

The DID to resolve enrollment boundaries for.

Output

Encodingapplication/json
boundaries array Required

Boundary domains the user is enrolled in. Empty if not enrolled.

did stringdid Required

A decentralized identifier (DID).

enrolled boolean Required

Whether the DID is enrolled in this Stratos service.

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
The DID to resolve enrollment boundaries for.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "enrolled",
        "boundaries"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "enrolled": {
          "type": "boolean",
          "description": "Whether the DID is enrolled in this Stratos service."
        },
        "boundaries": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Boundary domains the user is enrolled in. Empty if not enrolled."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "The DID to resolve enrollment boundaries for."
      }
    }
  },
  "description": "Resolve enrollment boundaries for a DID. Returns the boundary domains the user is enrolled in."
}

Lexicon Garden

@