Lit Protocol · Schema

NewAccountRequest

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
account_name string
account_description string
email string Optional email address — forwarded to Stripe for the customer record. Not stored on-chain.
View JSON Schema on GitHub

JSON Schema

lit-protocol-newaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NewAccountRequest",
  "title": "NewAccountRequest",
  "type": "object",
  "required": [
    "account_description",
    "account_name"
  ],
  "properties": {
    "account_name": {
      "type": "string"
    },
    "account_description": {
      "type": "string"
    },
    "email": {
      "description": "Optional email address \u2014 forwarded to Stripe for the customer record.  Not stored on-chain.",
      "default": null,
      "type": "string",
      "nullable": true
    }
  }
}