tools.ozone.hosting.getAccountHistory

ozone-lexicons.bsky.social

Documentation

Get account history, e.g. log of updated email addresses or other identity information.

main query

Get account history, e.g. log of updated email addresses or other identity information.

Parameters

cursor string Optional

No description available.

did string did Required

A decentralized identifier (DID).

events array of string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

events array Required

No description available.

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
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "events"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "events": {
          "type": "array",
          "items": {
            "ref": "#event",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "events": {
        "type": "array",
        "items": {
          "type": "string",
          "knownValues": [
            "accountCreated",
            "emailUpdated",
            "emailConfirmed",
            "passwordUpdated",
            "handleUpdated"
          ]
        }
      }
    }
  },
  "description": "Get account history, e.g. log of updated email addresses or other identity information."
}
accountCreated object

No description available.

Properties

email string Optional

No description available.

handle string handle Optional

An AT Protocol handle (e.g., alice.bsky.social).

View raw schema
{
  "type": "object",
  "required": [],
  "properties": {
    "email": {
      "type": "string"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    }
  }
}
emailConfirmed object

No description available.

Properties

email string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string"
    }
  }
}
emailUpdated object

No description available.

Properties

email string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string"
    }
  }
}
event object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

createdBy string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "details",
    "createdBy",
    "createdAt"
  ],
  "properties": {
    "details": {
      "refs": [
        "#accountCreated",
        "#emailUpdated",
        "#emailConfirmed",
        "#passwordUpdated",
        "#handleUpdated"
      ],
      "type": "union"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "createdBy": {
      "type": "string"
    }
  }
}
handleUpdated object

No description available.

Properties

handle string handle Required

An AT Protocol handle (e.g., alice.bsky.social).

View raw schema
{
  "type": "object",
  "required": [
    "handle"
  ],
  "properties": {
    "handle": {
      "type": "string",
      "format": "handle"
    }
  }
}
passwordUpdated object

No description available.

This object has no properties defined.

View raw schema
{
  "type": "object",
  "required": [],
  "properties": {}
}

Lexicon Garden

@