zone.stratos.enrollment.status

lexicon.northsky.app

Documentation

Check enrollment status for a DID in this Stratos service.

main query

Check enrollment status for a DID in this Stratos service.

Parameters

did string did Required

The DID to check enrollment for.

Output

Encodingapplication/json
boundaries array Optional

Authoritative boundaries assigned. Only included when request is authenticated.

did stringdid Required

The DID that was checked.

enrolled boolean Required

Whether the DID is enrolled in this Stratos service.

enrolledAt stringdatetime Optional

When the DID was enrolled, if enrolled.

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 check enrollment for.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "enrolled"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The DID that was checked."
        },
        "enrolled": {
          "type": "boolean",
          "description": "Whether the DID is enrolled in this Stratos service."
        },
        "boundaries": {
          "type": "array",
          "items": {
            "ref": "app.stratos.boundary.defs#Domain",
            "type": "ref"
          },
          "description": "Authoritative boundaries assigned. Only included when request is authenticated."
        },
        "enrolledAt": {
          "type": "string",
          "format": "datetime",
          "description": "When the DID was enrolled, if enrolled."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "The DID to check enrollment for."
      }
    }
  },
  "description": "Check enrollment status for a DID in this Stratos service."
}

Lexicon Garden

@