town.muni.arbiter.updateDidDoc

zicklag.dev

Documentation

Update the DID doc for a DID that is hosted by this service.

main procedure

Update the DID doc for a DID that is hosted by this service.

Input

Encodingapplication/json
did stringdid Required

The DID to update the document for.

Output

Encodingapplication/json
did stringdid Required

A decentralized identifier (DID).

Errors

ErrDidNotManaged The specified DID is not managed by this service.
ErrPermissionDenied The requesting user is not allowed to make the request.
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",
        "config"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The DID to update the document for."
        },
        "config": {
          "ref": "town.muni.arbiter.defs#didDocConfig",
          "type": "ref",
          "description": "Updated DID document configuration."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "ErrDidNotManaged",
      "description": "The specified DID is not managed by this service."
    },
    {
      "name": "ErrPermissionDenied",
      "description": "The requesting user is not allowed to make the request."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Update the DID doc for a DID that is hosted by this service."
}

Lexicon Garden

@