zone.stratos.admin.setActive

lexicon.northsky.app

Documentation

Activate or deactivate an enrolled member. Requires admin authorization. Deactivation is reversible and preserves the member's boundaries.

main procedure

Activate or deactivate an enrolled member. Requires admin authorization. Deactivation is reversible and preserves the member's boundaries.

Input

Encodingapplication/json
active boolean Required

Whether the member's enrollment should be active.

did stringdid Required

The member to update.

Output

Encodingapplication/json
active boolean Required

No description available.

did stringdid Required

A decentralized identifier (DID).

Errors

NotFound The DID is not 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://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "active"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The member to update."
        },
        "active": {
          "type": "boolean",
          "description": "Whether the member's enrollment should be active."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "NotFound",
      "description": "The DID is not enrolled."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "active"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "active": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Activate or deactivate an enrolled member. Requires admin authorization. Deactivation is reversible and preserves the member's boundaries."
}

Lexicon Garden

@