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
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
View JSON Schema
{
  "type": "object",
  "description": "Response from agent registration endpoint",
  "required": [
    "success",
    "message",
    "agent",
    "setup",
    "skill_files"
  ],
  "properties": {
    "agent": {
      "$ref": "#/components/schemas/AgentInfo",
      "description": "The newly created agent account"
    },
    "message": {
      "type": "string",
      "description": "Welcome message"
    },
    "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"
    }
  }
}