SerenAI

Pay Per Call Agentic Commerce

AgentRegisterResponse

Response from agent registration endpoint

Properties

PropertyTypeRequiredDescription
agent AgentInfo Yes The newly created agent account
message string Yes Welcome message
next_step string Yes Clear next-step guidance for the caller
setup SetupInstructions Yes Setup instructions for getting started
skill_files SkillFiles Yes Links to skill files and documentation
success boolean Yes Whether registration was successful
verification_required boolean Yes Whether the agent must verify the submitted email before ownership is confirmed
verification_sent boolean Yes Whether a verification email was sent
View JSON Schema
{
  "type": "object",
  "description": "Response from agent registration endpoint",
  "required": [
    "success",
    "message",
    "verification_sent",
    "verification_required",
    "next_step",
    "agent",
    "setup",
    "skill_files"
  ],
  "properties": {
    "agent": {
      "$ref": "#/components/schemas/AgentInfo",
      "description": "The newly created agent account"
    },
    "message": {
      "type": "string",
      "description": "Welcome message"
    },
    "next_step": {
      "type": "string",
      "description": "Clear next-step guidance for the caller"
    },
    "setup": {
      "$ref": "#/components/schemas/SetupInstructions",
      "description": "Setup instructions for getting started"
    },
    "skill_files": {
      "$ref": "#/components/schemas/SkillFiles",
      "description": "Links to skill files and documentation"
    },
    "success": {
      "type": "boolean",
      "description": "Whether registration was successful"
    },
    "verification_required": {
      "type": "boolean",
      "description": "Whether the agent must verify the submitted email before ownership is confirmed"
    },
    "verification_sent": {
      "type": "boolean",
      "description": "Whether a verification email was sent"
    }
  }
}