Lit Protocol · Schema

AddUsageApiKeyResponse

Response for account config operations (add_group, add_pkp_to_group, remove_pkp_from_group, add_usage_api_key, remove_usage_api_key).

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
success boolean
usage_api_key string
View JSON Schema on GitHub

JSON Schema

lit-protocol-addusageapikeyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddUsageApiKeyResponse",
  "title": "AddUsageApiKeyResponse",
  "description": "Response for account config operations (add_group, add_pkp_to_group, remove_pkp_from_group, add_usage_api_key, remove_usage_api_key).",
  "type": "object",
  "required": [
    "success",
    "usage_api_key"
  ],
  "properties": {
    "success": {
      "type": "boolean"
    },
    "usage_api_key": {
      "type": "string"
    }
  }
}