Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.server.createAppPassword

atproto-lexicons.bsky.social

Documentation

main procedure

Create an App Password.

Input

Encodingapplication/json
name string Required

A short name for the App Password, to help distinguish them.

privileged boolean Optional

If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients.

Output

Encodingapplication/json

Errors

AccountTakedown
Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "A short name for the App Password, to help distinguish them."
        },
        "privileged": {
          "type": "boolean",
          "description": "If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AccountTakedown"
    }
  ],
  "output": {
    "schema": {
      "ref": "#appPassword",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Create an App Password."
}
appPassword object

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

name string Required

No description provided.

password string Required

No description provided.

privileged boolean Optional

No description provided.

View raw schema
{
  "type": "object",
  "required": [
    "name",
    "password",
    "createdAt"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "privileged": {
      "type": "boolean"
    }
  }
}

Lexicon Garden

@