SerenAI

Pay Per Call Agentic Commerce

AgentRegisterRequest

Request to register a new AI agent account.

Properties

PropertyTypeRequiredDescription
email string Yes Real user-controlled email address for ownership verification.
name string,null No Optional custom display name for the agent. If not provided, a unique celestial-themed name will be generated (e.g., "radiant-sirius").
View JSON Schema
{
  "type": "object",
  "description": "Request to register a new AI agent account.",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string",
      "description": "Real user-controlled email address for ownership verification."
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Optional custom display name for the agent.\nIf not provided, a unique celestial-themed name will be generated (e.g., \"radiant-sirius\")."
    }
  }
}