SerenAI

Pay Per Call Agentic Commerce

WalletRecoverResponse

Response from wallet recovery endpoint.

Properties

PropertyTypeRequiredDescription
agent AgentInfo Yes The recovered agent account (with a new API key)
message string Yes Message about recovery result
new_recovery_code string Yes New recovery code (the old one has been rotated). Save this securely!
setup SetupInstructions Yes Setup instructions for getting started
skill_files SkillFiles Yes Links to skill files and documentation
success boolean Yes Whether recovery was successful
View JSON Schema
{
  "type": "object",
  "description": "Response from wallet recovery endpoint.",
  "required": [
    "success",
    "message",
    "agent",
    "setup",
    "skill_files",
    "new_recovery_code"
  ],
  "properties": {
    "agent": {
      "$ref": "#/components/schemas/AgentInfo",
      "description": "The recovered agent account (with a new API key)"
    },
    "message": {
      "type": "string",
      "description": "Message about recovery result"
    },
    "new_recovery_code": {
      "type": "string",
      "description": "New recovery code (the old one has been rotated). Save this securely!"
    },
    "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 recovery was successful"
    }
  }
}